using System; using System.Collections.Generic; using Artemis.Storage.Entities.Profile.Conditions; namespace Artemis.Storage.Entities.Profile.Abstract { public abstract class RenderElementEntity { public Guid Id { get; set; } public Guid ParentId { get; set; } public List LayerEffects { get; set; } public List PropertyEntities { get; set; } public List ExpandedPropertyGroups { get; set; } public DataModelConditionGroupEntity DisplayCondition { get; set; } public TimelineEntity Timeline { get; set; } } }