mirror of
https://github.com/luscis/openlan.git
synced 2025-10-07 09:30:54 +08:00
30 lines
674 B
Go
Executable File
30 lines
674 B
Go
Executable File
package schema
|
|
|
|
type Lease struct {
|
|
Address string `json:"address"`
|
|
Alias string `json:"alias"`
|
|
Client string `json:"client"`
|
|
Type string `json:"type"`
|
|
Network string `json:"network"`
|
|
}
|
|
|
|
type PrefixRoute struct {
|
|
Prefix string `json:"prefix"`
|
|
NextHop string `json:"nexthop"`
|
|
Metric int `json:"metric"`
|
|
Mode string `json:"mode"`
|
|
}
|
|
|
|
type Subnet struct {
|
|
IfAddr string `json:"address,omitempty"`
|
|
IpStart string `json:"startAt,omitempty"`
|
|
IpEnd string `json:"endAt,omitempty"`
|
|
Netmask string `json:"netmask"`
|
|
}
|
|
|
|
type Network struct {
|
|
Name string `json:"name"`
|
|
Subnet Subnet `json:"subnet"`
|
|
Routes []PrefixRoute `json:"routes"`
|
|
}
|