profileShare

rasmusjy / splitapp-backend-clean-onion

Read-only snapshot

No repository description.

main default branch 429 files Expires Sep 13, 2026, 9:06 AM
PollOptionDto.cs 266 bytes
1 namespace App.DTO.v1;
2
3 public class PollOptionDto
4 {
5 public Guid Id { get; set; }
6 public string Text { get; set; } = default!;
7 public int VoteCount { get; set; }
8 public bool VotedByCurrentUser { get; set; }
9 public int DisplayOrder { get; set; }
10 }
11