feat(discord): add reschedule vote button handler

This commit is contained in:
2026-05-20 12:17:58 +03:00
parent e93e777fb3
commit fdfc73ae9c
6 changed files with 176 additions and 8 deletions
@@ -5,6 +5,13 @@ public sealed record RescheduleOptionDto(
int DisplayOrder,
DateTimeOffset ProposedAt);
public sealed record VoteProposalDto(
Guid Id,
Guid SessionId,
DateTimeOffset VotingDeadlineAt,
string Title,
DateTime CurrentScheduledAt);
public sealed record RescheduleOptionVoteDto(
Guid OptionId,
Guid PlayerId,