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

10 lines
334 B
C#

namespace Modules.Library.WebApi.Models.Anime.CommonProperties;
public class GenreProportionEdit
{
public Guid? AnimeTitleId { get; set; }
public Guid? AnimeSeasonId { get; set; }
public Guid? AnimeEpisodeId { get; set; }
public Guid GenreId { get; set; } = default!;
public decimal? Proportion { get; set; }
}