7 lines
144 B
C#
7 lines
144 B
C#
namespace Modules.Library.Core.Domain.Genre;
|
|
|
|
public class Genre : Entity
|
|
{
|
|
[Required]
|
|
public string Name { get; set; } = default!;
|
|
} |