10 lines
355 B
C#
10 lines
355 B
C#
namespace Modules.Library.Database.Database.Models.Anime;
|
|
|
|
public class AnimeItem1 : Entity1
|
|
{
|
|
public CommonProperties.CommonProperties1 CommonProperties { get; set; } = default!;
|
|
public ushort Order { get; set; }
|
|
public ushort Variant { get; set; }
|
|
public bool Completed { get; set; }
|
|
public TimeSpan ExpirationTime { get; set; }
|
|
} |