No repository description.
namespace App.DTO.v1;
public class PollOptionDto
{
public Guid Id { get; set; }
public string Text { get; set; } = default!;
public int VoteCount { get; set; }
public bool VotedByCurrentUser { get; set; }
public int DisplayOrder { get; set; }
}