MagiTrickle/models/group.go

12 lines
168 B
Go

package models
import "github.com/google/uuid"
type Group struct {
ID uuid.UUID
Name string
Interface string
Rules []*Rule
FixProtect bool
}