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