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 Items { get; set; } = []; public uint SeasonsCount { get; set; } public uint EpisodesCount { get; set; } public uint EpisodesInsideSeasonsCount { get; set; } public bool Completed { get; set; } }