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; } }