cloudnet-compose/worker/dotnet/Worker/Entities/Vote.cs
2018-09-21 19:23:31 +01:00

17 lines
340 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Worker.Entities
{
[Table("votes")]
public class Vote
{
[Column("id")]
[Key]
public string VoterId { get; set; }
[Column("vote")]
public string VoteOption { get; set; }
}
}