mirror of
https://github.com/gravitl/netmaker.git
synced 2025-10-09 05:16:45 +08:00
15 lines
532 B
Go
15 lines
532 B
Go
package models
|
|
|
|
type EgressReq struct {
|
|
ID string `json:"id"`
|
|
Name string `json:"name"`
|
|
Network string `json:"network"`
|
|
Description string `json:"description"`
|
|
Nodes map[string]int `json:"nodes"`
|
|
Tags []string `json:"tags"`
|
|
Range string `json:"range"`
|
|
Domain string `json:"domain"`
|
|
Nat bool `json:"nat"`
|
|
Status bool `json:"status"`
|
|
IsInetGw bool `json:"is_internet_gateway"`
|
|
}
|