2024-08-26 19:10:40 +03:00
|
|
|
package models
|
|
|
|
|
2025-02-08 06:23:36 +03:00
|
|
|
import "github.com/google/uuid"
|
|
|
|
|
2024-08-26 19:10:40 +03:00
|
|
|
type Group struct {
|
2025-02-08 06:23:36 +03:00
|
|
|
ID uuid.UUID
|
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
|
|
|
}
|