mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-31 22:18:07 +08:00
21 lines
680 B
Go
21 lines
680 B
Go
|
package dto
|
||
|
|
||
|
type RuleSearch struct {
|
||
|
PageInfo
|
||
|
Type string `json:"type" validate:"required"`
|
||
|
}
|
||
|
|
||
|
type PortRuleOperate struct {
|
||
|
Operation string `json:"operation" validate:"required,oneof=add remove"`
|
||
|
Address string `json:"address"`
|
||
|
Port string `json:"port" validate:"required"`
|
||
|
Protocol string `json:"protocol" validate:"required,oneof=tcp udp tcp/upd"`
|
||
|
Strategy string `json:"strategy" validate:"required,oneof=accept drop"`
|
||
|
}
|
||
|
|
||
|
type AddrRuleOperate struct {
|
||
|
Operation string `json:"operation" validate:"required,oneof=add remove"`
|
||
|
Address string `json:"address" validate:"required"`
|
||
|
Strategy string `json:"strategy" validate:"required,oneof=accept drop"`
|
||
|
}
|