2021-12-14 09:59:36 +01:00

17 lines
336 B
C#

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