using System.ComponentModel.DataAnnotations; namespace Modules.Library.Application.Models; public class GenreProportion { public decimal? Proportion { get; set; } [Required] public Guid GenreId { get; set; } = default!; }