MagiTrickle/models/group.go

12 lines
168 B
Go
Raw Normal View History

2024-08-26 19:10:40 +03:00
package models
import "github.com/google/uuid"
2024-08-26 19:10:40 +03:00
type Group struct {
ID uuid.UUID
Name string
Interface string
Rules []*Rule
FixProtect bool
2024-08-26 19:10:40 +03:00
}