10 lines
218 B
Go
10 lines
218 B
Go
package models
|
|
|
|
type Group struct {
|
|
ID ID `yaml:"id"`
|
|
Name string `yaml:"name"`
|
|
Interface string `yaml:"interface"`
|
|
FixProtect bool `yaml:"fixProtect"`
|
|
Rules []*Rule `yaml:"rules"`
|
|
}
|