mirror of https://github.com/1Panel-dev/1Panel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
586 B
27 lines
586 B
1 year ago
|
package dto
|
||
|
|
||
|
type DeviceBaseInfo struct {
|
||
|
DNS []string `json:"dns"`
|
||
|
Hosts []HostHelper `json:"hosts"`
|
||
|
Hostname string `json:"hostname"`
|
||
|
TimeZone string `json:"timeZone"`
|
||
|
LocalTime string `json:"localTime"`
|
||
|
Ntp string `json:"ntp"`
|
||
|
User string `json:"user"`
|
||
|
}
|
||
|
|
||
|
type HostHelper struct {
|
||
|
IP string `json:"ip"`
|
||
|
Host string `json:"host"`
|
||
|
}
|
||
|
|
||
|
type TimeZoneOptions struct {
|
||
|
From string `json:"from"`
|
||
|
Zones []string `json:"zones"`
|
||
|
}
|
||
|
|
||
|
type ChangePasswd struct {
|
||
|
User string `json:"user"`
|
||
|
Passwd string `json:"passwd"`
|
||
|
}
|