mirror of
https://github.com/luscis/openlan.git
synced 2025-10-05 08:36:59 +08:00
19 lines
428 B
Go
Executable File
19 lines
428 B
Go
Executable File
package schema
|
|
|
|
type ZGuest struct {
|
|
Network string `json:"network"`
|
|
Name string `json:"name"`
|
|
Device string `json:"device"`
|
|
Address string `json:"Address"`
|
|
}
|
|
|
|
type KnockRule struct {
|
|
Network string `json:"network"`
|
|
Name string `json:"name"`
|
|
Dest string `json:"destination"`
|
|
Protocol string `json:"protocol"`
|
|
Port string `json:"port"`
|
|
Age int `json:"age"`
|
|
CreateAt int64 `json:"createAt"`
|
|
}
|