MyBookmark/Modules.Library.Application/Models/GenreProportion.cs
2024-09-23 03:00:50 +03:00

10 lines
238 B
C#

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