Files
nezha_domains/model/nat.go
2025-01-21 22:23:15 +08:00

11 lines
222 B
Go

package model
type NAT struct {
Common
Enabled bool `json:"enabled"`
Name string `json:"name"`
ServerID uint64 `json:"server_id"`
Host string `json:"host"`
Domain string `json:"domain" gorm:"unique"`
}