MyBookmark/Modules.Library.WebApi/Models/Views/Anime/TitleDetail.cs
THE_KONDRAT 3294f8d88d title:
non season episode
seasons
2024-12-29 19:41:07 +03:00

22 lines
638 B
C#

namespace Modules.Library.WebApi.Models.Views.Anime;
public class TitleDetail
{
public Guid Id { get; set; }
public bool Deleted { get; set; }
public CommonProperties CommonProperties { get; set; } = default!;
public decimal? Rate { get; set; }
public decimal? MyRate { get; set; }
public int ViewsCount { get; set; }
public int MyViewsCount { get; set; }
public IEnumerable<AnimeItem> Items { get; set; } = [];
public uint SeasonsCount { get; set; }
public uint EpisodesCount { get; set; }
public uint EpisodesInsideSeasonsCount { get; set; }
public bool Completed { get; set; }
}