mirror of
https://github.com/Buriburizaem0n/nezha_domains.git
synced 2026-02-03 20:20:10 +00:00
11 lines
222 B
Go
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"`
|
|
}
|