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