profileShare

rasmusjy / splitapp-backend-clean-onion

Read-only snapshot

No repository description.

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