mirror of
https://github.com/iptv-org/iptv
synced 2025-12-17 10:57:18 -05:00
15 lines
196 B
TypeScript
15 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
|
||
|
|
}
|
||
|
|
}
|