2024-10-27 13:10:07 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
type SettingForm struct {
|
2024-11-16 20:57:03 +08:00
|
|
|
CustomNameservers string `json:"custom_nameservers,omitempty" validate:"optional"`
|
|
|
|
IgnoredIPNotification string `json:"ignored_ip_notification,omitempty" validate:"optional"`
|
2024-10-27 13:10:07 +08:00
|
|
|
IPChangeNotificationGroupID uint64 `json:"ip_change_notification_group_id,omitempty"` // IP变更提醒的通知组
|
|
|
|
Cover uint8 `json:"cover,omitempty"`
|
|
|
|
SiteName string `json:"site_name,omitempty"`
|
|
|
|
Language string `json:"language,omitempty"`
|
2024-11-16 20:57:03 +08:00
|
|
|
InstallHost string `json:"install_host,omitempty" validate:"optional"`
|
|
|
|
CustomCode string `json:"custom_code,omitempty" validate:"optional"`
|
|
|
|
CustomCodeDashboard string `json:"custom_code_dashboard,omitempty" validate:"optional"`
|
2024-10-27 13:10:07 +08:00
|
|
|
|
2024-11-16 20:57:03 +08:00
|
|
|
EnableIPChangeNotification bool `json:"enable_ip_change_notification,omitempty" validate:"optional"`
|
|
|
|
EnablePlainIPInNotification bool `json:"enable_plain_ip_in_notification,omitempty" validate:"optional"`
|
2024-10-27 13:10:07 +08:00
|
|
|
}
|