2024-08-26 19:10:40 +03:00
|
|
|
package models
|
|
|
|
|
|
|
|
type Group struct {
|
2025-02-12 00:34:14 +03:00
|
|
|
ID ID `yaml:"id"`
|
|
|
|
Name string `yaml:"name"`
|
|
|
|
Interface string `yaml:"interface"`
|
|
|
|
FixProtect bool `yaml:"fixProtect"`
|
|
|
|
Rules []*Rule `yaml:"rules"`
|
2024-08-26 19:10:40 +03:00
|
|
|
}
|