No repository description.
namespace App.DTO.v1;
public class PollCreateDto
{
public Guid TripId { get; set; }
public string Question { get; set; } = default!;
public bool AllowMultipleVotes { get; set; }
public bool IsAnonymous { get; set; }
public List<string> Options { get; set; } = default!;
}