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

14 lines
443 B
C#

namespace Modules.Library.Application.Models.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<AnimeItem> Items { get; set; } = [];
public bool Completed { get; set; }
public TimeSpan ExpirationTime { get; set; }
}