14 lines
575 B
C#
14 lines
575 B
C#
using Modules.Library.Domain.EntitiesV0.MediaContent.CommonProperties.ShadowEntities;
|
|
|
|
namespace Modules.Library.Domain.EntitiesV0.MediaContent.Items.Anime.ShadowEntities;
|
|
|
|
internal abstract class AnimeItemShadow(CommonPropertiesShadow commonProperties)
|
|
{
|
|
internal string id = Guid.NewGuid().ToString();
|
|
internal CommonPropertiesShadow commonProperties = commonProperties;
|
|
internal ushort order = 0;
|
|
internal ushort variant = 0;
|
|
internal bool completed = false;
|
|
internal TimeSpan expirationTime = TimeSpan.Zero;
|
|
internal bool deleted = false;
|
|
} |