using System; using System.Collections.Generic; using LiteDB; namespace Artemis.Storage.Entities.Profile { public class FolderEntity : EffectsEntity { public FolderEntity() { PropertyEntities = new List(); Conditions = new List(); LayerEffects = new List(); ExpandedPropertyGroups = new List(); } public Guid Id { get; set; } public Guid ParentId { get; set; } public int Order { get; set; } public string Name { get; set; } [BsonRef("ProfileEntity")] public ProfileEntity Profile { get; set; } public Guid ProfileId { get; set; } } }