profileShare

rasmusjy / splitapp-backend-clean-onion

Read-only snapshot

No repository description.

main default branch 429 files Expires Sep 13, 2026, 9:06 AM
PollCreateDto.cs 293 bytes
1 namespace App.DTO.v1;
2
3 public class PollCreateDto
4 {
5 public Guid TripId { get; set; }
6 public string Question { get; set; } = default!;
7 public bool AllowMultipleVotes { get; set; }
8 public bool IsAnonymous { get; set; }
9 public List<string> Options { get; set; } = default!;
10 }
11