18 lines
557 B
C#
18 lines
557 B
C#
namespace Modules.Library.WebApi.Models.Views.Anime;
|
|
|
|
public class Title
|
|
{
|
|
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 List<Episode> Episodes { get; set; } = [];
|
|
public List<Season> Seasons { get; set; } = [];
|
|
|
|
public bool Completed { get; set; }
|
|
public uint EpisodesInsideSeasonsCount { get; set; }
|
|
public long ExpirationTimeTicks { get; set; }
|
|
} |