myhn/Domain/Vote.cs
2021-01-08 16:26:19 +01:00

18 lines
359 B
C#

using System;
namespace MyHN.Domain
{
public class Vote
{
public DateTime CreatedAt { get; }
public string CreatedBy { get; }
public VoteType Direction { get; internal set; }
internal Vote(VoteType direction, string createdBy)
{
Direction = direction;
CreatedAt = DateTime.UtcNow;
CreatedBy = createdBy;
}
}
}