MyBookmark/Modules.Library.Database/Database/Models/CommonProperties/GenreProportionItem1.cs
2024-09-04 23:08:56 +03:00

7 lines
217 B
C#

namespace Modules.Library.Database.Database.Models.CommonProperties;
public class GenreProportionItem1 : Entity1
{
public decimal? Proportion { get; set; }
public string GenreId { get; set; } = default!;
}