10 lines
334 B
C#
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; }
|
|
} |