mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Profiles editor - Save last selected element and reselect it Profile editor - Save pan/zoom position Profile editor - Added option to resume normal playback on focus loss
27 lines
751 B
C#
27 lines
751 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Artemis.Storage.Entities.Profile.Abstract;
|
|
using LiteDB;
|
|
|
|
namespace Artemis.Storage.Entities.Profile
|
|
{
|
|
public class FolderEntity : RenderElementEntity
|
|
{
|
|
public FolderEntity()
|
|
{
|
|
PropertyEntities = new List<PropertyEntity>();
|
|
LayerEffects = new List<LayerEffectEntity>();
|
|
ExpandedPropertyGroups = new List<string>();
|
|
}
|
|
|
|
public int Order { get; set; }
|
|
public string Name { get; set; }
|
|
public bool IsExpanded { get; set; }
|
|
public bool Suspended { get; set; }
|
|
|
|
[BsonRef("ProfileEntity")]
|
|
public ProfileEntity Profile { get; set; }
|
|
|
|
public Guid ProfileId { get; set; }
|
|
}
|
|
} |