Files
be.ems/features/firewall/model/firewall.go
2023-09-13 14:48:47 +08:00

11 lines
352 B
Go

package model
type Firewall struct {
Type string `json:"type" xorm:"type"`
Port string `json:"port" xorm:"port"`
Protocol string `json:"protocol" xorm:"protocol"`
Address string `json:"address" xorm:"address"`
Strategy string `json:"strategy" xorm:"strategy"`
Description string `json:"description" xorm:"description"`
}