mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-22 12:48:14 -05:00
9 lines
224 B
Go
9 lines
224 B
Go
package model
|
|
|
|
type NATForm struct {
|
|
Name string `json:"name,omitempty" minLength:"1"`
|
|
ServerID uint64 `json:"server_id,omitempty"`
|
|
Host string `json:"host,omitempty"`
|
|
Domain string `json:"domain,omitempty"`
|
|
}
|