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