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 bool ContainRates { get; set; } public bool ContainViews { get; set; } public IEnumerable Items { get; set; } = []; public bool Completed { get; set; } public long ExpirationTimeTicks { get; set; } }