nezha/model/nat_api.go

10 lines
268 B
Go
Raw Normal View History

package model
type NATForm struct {
2024-11-16 07:57:03 -05:00
Name string `json:"name,omitempty" minLength:"1"`
2025-01-21 09:23:15 -05:00
Enabled bool `json:"enabled,omitempty"`
ServerID uint64 `json:"server_id,omitempty"`
Host string `json:"host,omitempty"`
Domain string `json:"domain,omitempty"`
}