namespace Lieb.Models.Poll { public enum AnswerType { Buttons = 1, Dropdown = 2 } public class Poll { public int PollId { get; set; } public string Question { get; set; } public ICollection Options { get; set; } = new List(); public ICollection Answers { get; set; } = new List(); public AnswerType AnswerType {get; set;} public bool AllowCustomAnswer {get; set;} = false; public int? RaidId { get; set; } } }