Files
admin/src/models/channel.ts

24 lines
435 B
TypeScript

import type { Resource } from "./resources"
import type { User } from "./user"
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
edge_id: number
edge_ref: string
ip: string
user?: User
resource?: Resource
}