iptv/scripts/models/subdivision.ts

18 lines
287 B
TypeScript
Raw Normal View History

2023-09-15 17:40:35 +02:00
type SubdivisionProps = {
code: string
name: string
country: string
}
export class Subdivision {
code: string
name: string
country: string
constructor({ code, name, country }: SubdivisionProps) {
this.code = code
this.name = name
this.country = country
}
}