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

10 lines
237 B
C#

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