mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-22 12:48:14 -05:00
10 lines
188 B
Go
10 lines
188 B
Go
package model
|
|
|
|
type NAT struct {
|
|
Common
|
|
Name string `json:"name"`
|
|
ServerID uint64 `json:"server_id"`
|
|
Host string `json:"host"`
|
|
Domain string `json:"domain" gorm:"unique"`
|
|
}
|