feat: add poll vote repository

This commit is contained in:
Tim
2025-08-30 12:06:11 +08:00
parent 5adee4db0e
commit 569531b462
5 changed files with 58 additions and 0 deletions

View File

@@ -13,4 +13,5 @@ public class PollDto {
private Map<Integer, Integer> votes;
private LocalDateTime endTime;
private List<AuthorDto> participants;
private Map<Integer, List<AuthorDto>> optionParticipants;
}