16 lines
525 B
C#
16 lines
525 B
C#
namespace Modules.Library.Database.Database.Models.Anime;
|
|
|
|
public class AnimeItem
|
|
{
|
|
public Guid Id { get; set; }
|
|
public CommonProperties.CommonProperties CommonProperties { get; set; } = default!;
|
|
public ushort Order { get; set; }
|
|
public ushort Variant { get; set; }
|
|
public bool Completed { get; set; }
|
|
public TimeSpan ExpirationTime { get; set; }
|
|
|
|
public bool Deleted { get; set; }
|
|
|
|
public AnimeTitle Title { get; set; } = default!;
|
|
public Guid AnimeTitleId { get; set; } = default!;
|
|
} |