geekbot/Geekbot.net/Database/Models/PollQuestionModel.cs

16 lines
357 B
C#
Raw Permalink Normal View History

using System.ComponentModel.DataAnnotations;
namespace Geekbot.net.Database.Models
{
public class PollQuestionModel
{
[Key]
public int Id { get; set; }
public int OptionId { get; set; }
public string OptionText { get; set; }
public int Votes { get; set; }
}
}