wireguard-dashboard/model/vo/system.go

12 lines
385 B
Go
Raw Normal View History

2024-03-07 17:07:41 +08:00
package vo
type ServerSetting struct {
2024-03-13 17:05:02 +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
}