MyBookmark/Modules.Library.Application/Models/Anime/Title.cs
THE_KONDRAT bad2805994 title modification
tried to add some ui
2024-09-24 19:44:54 +03:00

15 lines
496 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<Season> Seasons { get; set; } = [];
public List<Episode> Episodes { get; set; } = [];
public bool Completed { get; set; }
public TimeSpan ExpirationTime { get; set; }
}