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