profileShare

rasmusjy / splitapp-backend-microservices

Read-only snapshot

No repository description.

main default branch 501 files Expires Sep 13, 2026, 9:06 AM
TripPollOptionBllDto.cs 571 bytes
1 using SplitApp.Shared.Kernel.Domain;
2 using SplitApp.Shared.Kernel.Localization;
3
4 namespace SplitApp.WebApp.Application.DTO;
5
6 public class TripPollOptionBllDto
7 {
8 public Guid Id { get; set; }
9 public DateTime CreatedAt { get; set; }
10 public DateTime UpdatedAt { get; set; }
11
12 public Guid PollId { get; set; }
13 public string Text { get; set; } = default!;
14 public int DisplayOrder { get; set; }
15 public int VoteCount { get; set; }
16 public List<Guid> VoterUserIds { get; set; } = new();
17 public List<AppUserBllDto> Voters { get; set; } = new();
18 }
19