using System; using System.Collections.Generic; using LiteDB; namespace Artemis.Storage.Entities.Profile { public class LayerEntity : EffectsEntity { public LayerEntity() { Leds = new List(); 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; } public bool Enabled { get; set; } public List Leds { get; set; } [BsonRef("ProfileEntity")] public ProfileEntity Profile { get; set; } public Guid ProfileId { get; set; } } }