femto-backend/Femto.Modules.Blog/Domain/Posts/PostReaction.cs
2025-05-27 00:28:16 +02:00

17 lines
No EOL
407 B
C#

namespace Femto.Modules.Blog.Domain.Posts;
public class PostReaction
{
public Guid Id { get; private set; }
public string Emoji { get; private set; } = null!;
public int Count { get; private set; }
public PostReaction(string emoji, int count)
{
this.Id = Guid.CreateVersion7();
this.Emoji = emoji;
this.Count = count;
}
private PostReaction() { }
}