16 lines
272 B
C#
16 lines
272 B
C#
using System;
|
|
|
|
namespace HN.Domain
|
|
{
|
|
public sealed class Vote
|
|
{
|
|
public VoteType Type { get; private set; }
|
|
public DateTime CreatedAt { get; private set; }
|
|
|
|
internal Vote(VoteType type)
|
|
{
|
|
Type = type;
|
|
CreatedAt = DateTime.UtcNow;
|
|
}
|
|
}
|
|
} |