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 CategoryData = {
|
|
id: string
|
|
name: string
|
|
}
|
|
|
|
export class Category {
|
|
id: string
|
|
name: string
|
|
|
|
constructor(data: CategoryData) {
|
|
this.id = data.id
|
|
this.name = data.name
|
|
}
|
|
}
|