MagiTrickle/models/group.go
2025-02-12 00:34:42 +03:00

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"`
}