MagiTrickle/models/group.go

10 lines
131 B
Go
Raw Normal View History

2024-08-26 19:10:40 +03:00
package models
type Group struct {
ID int
Name string
Interface string
FixProtect bool
Domains []*Domain
2024-08-26 19:10:40 +03:00
}