namespace SharedClasses.SharedModels { public class ApiPoll { public int PollId { get; set; } public string Question { get; set; } = string.Empty; public Dictionary Options { get; set; } = new Dictionary(); public bool AllowCustomAnswer {get; set;} = false; public List UserIds {get; set;} = new List(); } public class ApiPollAnswer { public int PollId { get; set; } public int OptionId {get; set;} public string Answer {get; set;} = string.Empty; public ulong UserId {get; set;} } }