mirror of
https://github.com/iptv-org/database.git
synced 2025-05-10 03:30:01 -04:00
15 lines
187 B
TypeScript
15 lines
187 B
TypeScript
export class Model {
|
|
line?: number
|
|
|
|
constructor() {}
|
|
|
|
setLine(line: number): this {
|
|
this.line = line
|
|
|
|
return this
|
|
}
|
|
|
|
getLine(): number {
|
|
return this.line || 0
|
|
}
|
|
}
|