Add attendees to Conference dataclass

This commit is contained in:
Edward Betts 2024-07-27 19:39:22 +09:00
parent 9f54c3ac03
commit a130a85a48

View file

@ -38,6 +38,7 @@ class Conference:
free: bool | None = None
hackathon: bool | None = None
ticket_type: str | None = None
attendees: int | None = None
@property
def display_name(self) -> str: