using NadekoBot.Common.Collections; using System.Collections.Generic; namespace NadekoBot.Core.Services.Database.Models { public class Poll : DbEntity { public ulong GuildId { get; set; } public ulong ChannelId { get; set; } public string Question { get; set; } public IndexedCollection Answers { get; set; } public HashSet Votes { get; set; } = new HashSet(); } public class PollAnswer : DbEntity, IIndexed { public int Index { get; set; } public string Text { get; set; } } }