iptv/scripts/models/category.ts

15 lines
196 B
TypeScript
Raw Normal View History

2023-09-15 17:40:35 +02:00
type CategoryProps = {
id: string
name: string
}
export class Category {
id: string
name: string
constructor({ id, name }: CategoryProps) {
this.id = id
this.name = name
}
}