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