mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-12 10:00:05 -04:00
14 lines
196 B
TypeScript
14 lines
196 B
TypeScript
type CategoryProps = {
|
|
id: string
|
|
name: string
|
|
}
|
|
|
|
export class Category {
|
|
id: string
|
|
name: string
|
|
|
|
constructor({ id, name }: CategoryProps) {
|
|
this.id = id
|
|
this.name = name
|
|
}
|
|
}
|