13 lines
458 B
C#
13 lines
458 B
C#
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
namespace Modules.Library.Database.Database.Models.Anime;
|
|
|
|
[BsonKnownTypes(typeof(AnimeSeason), typeof(AnimeEpisode))]
|
|
public class AnimeItem : Entity
|
|
{
|
|
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; }
|
|
} |