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