MyBookmark/Modules.Library.WebApi/Models/GenreProportion.cs
THE_KONDRAT bad2805994 title modification
tried to add some ui
2024-09-24 19:44:54 +03:00

11 lines
280 B
C#

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