Files
db/specs/models_older/circle/group.v
2025-08-21 17:26:40 +02:00

13 lines
367 B
V

module circle
import base
// there is one group called "everyone" which is the default group for all members and their roles
pub struct Group {
base.Base
pub mut:
name string // name of the group in a circle, the one "everyone" is the default group
description string // optional description
members []u32 // pointers to the members of this group
}