feat: track poll votes

This commit is contained in:
Tim
2025-08-30 12:03:17 +08:00
parent 5adee4db0e
commit 23582934fa
5 changed files with 52 additions and 9 deletions

View File

@@ -12,5 +12,5 @@ public class PollDto {
private List<String> options;
private Map<Integer, Integer> votes;
private LocalDateTime endTime;
private List<AuthorDto> participants;
private Map<Integer, List<AuthorDto>> participants;
}