femto-backend/Femto.Modules.Blog/Domain/Authors/Author.cs
2025-05-17 23:47:19 +02:00

17 lines
353 B
C#

using Femto.Common.Domain;
namespace Femto.Modules.Blog.Domain.Authors;
public class Author : Entity
{
public Guid Id { get; private set; }
public string Username { get; private set; } = null!;
private Author() { }
public Author(Guid userId, string username)
{
this.Id = userId;
this.Username = username;
}
}