12 lines
165 B
TypeScript
12 lines
165 B
TypeScript
|
|
export type Gateway = {
|
||
|
|
id: number
|
||
|
|
version: string
|
||
|
|
mac: string
|
||
|
|
ip: string
|
||
|
|
host: string
|
||
|
|
type: number
|
||
|
|
status: number
|
||
|
|
meta: string
|
||
|
|
created_at: Date
|
||
|
|
}
|