16 lines
269 B
TypeScript
16 lines
269 B
TypeScript
|
|
export type Channel = {
|
||
|
|
id: number
|
||
|
|
batch_no: string
|
||
|
|
filter_prov: string
|
||
|
|
filter_city: string
|
||
|
|
filter_isp: string
|
||
|
|
host: string
|
||
|
|
port: string
|
||
|
|
whitelists: string
|
||
|
|
username: string
|
||
|
|
password: string
|
||
|
|
created_at: Date
|
||
|
|
updated_at: Date
|
||
|
|
expired_at: Date
|
||
|
|
}
|