type CategoryProps = {
id: string
name: string
}
export class Category {
constructor({ id, name }: CategoryProps) {
this.id = id
this.name = name