MagiTrickle/models/group.go

10 lines
133 B
Go
Raw Normal View History

2024-08-26 19:10:40 +03:00
package models
type Group struct {
2025-02-11 23:19:01 +03:00
ID [4]byte
Name string
Interface string
Rules []*Rule
FixProtect bool
2024-08-26 19:10:40 +03:00
}