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() { } }