13 lines
558 B
C#
13 lines
558 B
C#
using Modules.Library.Domain.Entities.MediaContent.CommonProperties.ShadowEntities;
|
|
|
|
namespace Modules.Library.Domain.Entities.MediaContent.Items.Anime.ShadowEntities;
|
|
|
|
internal class AnimeTitleShadow(CommonPropertiesShadow commonPropertiesShadow)
|
|
{
|
|
internal string id = Guid.NewGuid().ToString();
|
|
internal CommonPropertiesShadow commonProperties = commonPropertiesShadow;
|
|
internal List<AnimeItemShadow> items = [];
|
|
internal bool completed = false;
|
|
internal TimeSpan expirationTime = TimeSpan.Zero;
|
|
internal bool deleted = false;
|
|
} |