7 lines
No EOL
177 B
C#
7 lines
No EOL
177 B
C#
namespace Femto.Modules.Blog.Domain.Authors;
|
|
|
|
internal class Author
|
|
{
|
|
public string Id { get; private set; } = null!;
|
|
public string Name { get; private set; } = null!;
|
|
} |