12 lines
278 B
Python
12 lines
278 B
Python
from pydantic import BaseModel
|
|
|
|
from fiber_package.util import EntityList
|
|
|
|
class AssociationModel(BaseModel):
|
|
full_name: str
|
|
members: EntityList
|
|
committees: GroupList
|
|
guilds: GroupList
|
|
# events: GroupList
|
|
# activities: GroupList
|
|
# mailings: GroupList |