17 lines
No EOL
407 B
C#
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() { }
|
|
} |