MyBookmark/Modules.Library.Application/Models/Genre.cs
2024-09-23 03:00:50 +03:00

11 lines
253 B
C#

using System.ComponentModel.DataAnnotations;
namespace Modules.Library.Application.Models;
public class Genre
{
public Guid Id { get; set; }
[Required]
public string Name { get; set; } = default!;
public bool Deleted { get; set; }
}