wireguard-dashboard/model/vo/system.go

12 lines
399 B
Go
Raw Permalink Normal View History

2024-03-07 17:07:41 +08:00
package vo
type ServerSetting struct {
2024-03-14 15:23:16 +08:00
EndpointAddress string `json:"endpointAddress"`
DnsServer []string `json:"dnsServer"`
MTU int `json:"MTU"`
PersistentKeepalive int `json:"persistentKeepalive"`
FirewallMark string `json:"firewallMark"`
Table string `json:"table"`
ConfigFilePath string `json:"configFilePath"`
2024-03-07 17:07:41 +08:00
}