PollDto.cs
406 bytes
| 1 | namespace App.DTO.v1; |
|---|---|
| 2 | |
| 3 | public class PollDto |
| 4 | { |
| 5 | public Guid Id { get; set; } |
| 6 | public Guid TripId { get; set; } |
| 7 | public Guid CreatedByUserId { get; set; } |
| 8 | public string Question { get; set; } = default!; |
| 9 | public bool AllowMultipleVotes { get; set; } |
| 10 | public bool IsAnonymous { get; set; } |
| 11 | public DateTime? ClosedAt { get; set; } |
| 12 | public List<PollOptionDto>? Options { get; set; } |
| 13 | } |
| 14 | |