mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-12-18 13:29:03 +08:00
18 lines
489 B
Go
18 lines
489 B
Go
package model
|
|
|
|
type Firewall struct {
|
|
BaseModel
|
|
|
|
Type string `json:"type"`
|
|
Port string `json:"port"` // Deprecated
|
|
Address string `json:"address"` // Deprecated
|
|
|
|
Chain string `json:"chain"`
|
|
Protocol string `json:"protocol"`
|
|
SrcIP string `json:"srcIP"`
|
|
SrcPort string `json:"srcPort"`
|
|
DstIP string `json:"dstIP"`
|
|
DstPort string `json:"dstPort"`
|
|
Strategy string `gorm:"not null" json:"strategy"`
|
|
Description string `json:"description"`
|
|
}
|