using System.Collections.Generic; using Artemis.Storage.Entities.Profile.Abstract; using Artemis.Storage.Entities.Profile.AdaptionHints; namespace Artemis.Storage.Entities.Profile; public class LayerEntity : RenderElementEntity { public LayerEntity() { Leds = new List(); AdaptionHints = new List(); } public int Order { get; set; } public string? Name { get; set; } public bool Suspended { get; set; } public List Leds { get; set; } public List AdaptionHints { get; set; } public PropertyGroupEntity? GeneralPropertyGroup { get; set; } public PropertyGroupEntity? TransformPropertyGroup { get; set; } public LayerBrushEntity? LayerBrush { get; set; } }