nezha/model/nat.go

11 lines
222 B
Go
Raw Normal View History

2024-07-14 07:41:50 -04:00
package model
type NAT struct {
Common
2025-01-21 09:23:15 -05:00
Enabled bool `json:"enabled"`
2024-11-16 07:57:03 -05:00
Name string `json:"name"`
ServerID uint64 `json:"server_id"`
Host string `json:"host"`
Domain string `json:"domain" gorm:"unique"`
2024-07-14 07:41:50 -04:00
}