mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-22 12:48:14 -05:00
7831e2d1f8
Some checks are pending
CodeQL / Analyze (go) (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
Contributors / contributors (push) Waiting to run
Sync / sync-to-jihulab (push) Waiting to run
Run Tests / tests (macos) (push) Waiting to run
Run Tests / tests (ubuntu) (push) Waiting to run
Run Tests / tests (windows) (push) Waiting to run
10 lines
268 B
Go
10 lines
268 B
Go
package model
|
|
|
|
type NATForm struct {
|
|
Name string `json:"name,omitempty" minLength:"1"`
|
|
Enabled bool `json:"enabled,omitempty"`
|
|
ServerID uint64 `json:"server_id,omitempty"`
|
|
Host string `json:"host,omitempty"`
|
|
Domain string `json:"domain,omitempty"`
|
|
}
|