MyBookmark/Modules.Library.Database/Database/Models/Anime/AnimeItem.cs
THE_KONDRAT 7b16d72329 ui and login
mongo => postgres
2024-11-03 16:08:39 +03:00

13 lines
415 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; }
}