22 lines
638 B
C#
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; }
|
|
} |