MyBookmark/Modules.Library.Database/Database/Models/CommonProperties/GenreProportionItem.cs
THE_KONDRAT 7b16d72329 ui and login
mongo => postgres
2024-11-03 16:08:39 +03:00

9 lines
238 B
C#

namespace Modules.Library.Database.Database.Models.CommonProperties;
public class GenreProportionItem
{
public Guid Id { get; set; }
public decimal? Proportion { get; set; }
public Guid GenreId { get; set; } = default!;
}