mirror of
https://github.com/dockersamples/example-voting-app.git
synced 2026-05-10 03:26:46 +00:00
17 lines
340 B
C#
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; }
|
|
}
|
|
}
|