nezha/model/nat.go

10 lines
188 B
Go
Raw Permalink Normal View History

2024-07-14 19:41:50 +08:00
package model
type NAT struct {
Common
2024-11-16 20:57:03 +08:00
Name string `json:"name"`
ServerID uint64 `json:"server_id"`
Host string `json:"host"`
Domain string `json:"domain" gorm:"unique"`
2024-07-14 19:41:50 +08:00
}