hn-20-2/Domain/Comment.cs

20 lines
373 B
C#

using System;
namespace Domain
{
public class Comment
{
public Guid Id { get; }
public Guid LinkId { get; }
public string Content { get; }
public DateTime CreatedAt { get; }
internal Comment(Guid linkId, string content)
{
Id = Guid.NewGuid();
LinkId = linkId;
Content = content;
CreatedAt = DateTime.UtcNow;
}
}
}