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