fix remove round used in sector

This commit is contained in:
Maxime Réaux 2026-02-06 11:13:29 +01:00
parent 6cd3a060c7
commit 701f6b3292
7 changed files with 15 additions and 9 deletions

View file

@ -62,7 +62,7 @@ class CampaignParticipantDTO:
class SectorDTO:
id: str
name: str
round_index: int
round_index: int | None
major: str
minor: str
influence: str
@ -71,7 +71,7 @@ class SectorDTO:
@dataclass
class RoundDTO:
id: str
index: int
index: int | None
@dataclass(frozen=True, slots=True)