2024-10-26 23:57:47 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
type NATForm struct {
|
2024-11-16 20:57:03 +08:00
|
|
|
Name string `json:"name,omitempty" minLength:"1"`
|
2024-10-26 23:57:47 +08:00
|
|
|
ServerID uint64 `json:"server_id,omitempty"`
|
|
|
|
Host string `json:"host,omitempty"`
|
|
|
|
Domain string `json:"domain,omitempty"`
|
|
|
|
}
|