mirror of
https://github.com/Artemis-RGB/Artemis
synced 2026-03-25 02:38:48 +00:00
Storage - Added LiteDB to SQLite migration UI - Try to die a bit more gracefully Core - Delay start watching plugins for hot reload after initializing UI - Simplify category management logic UI - Avoid crash during profile icon load Storage - Fix entry metadata retrieval
13 lines
438 B
C#
13 lines
438 B
C#
using Artemis.Storage.Legacy.Entities.Profile.DataBindings;
|
|
|
|
namespace Artemis.Storage.Legacy.Entities.Profile;
|
|
|
|
internal class PropertyEntity
|
|
{
|
|
public string Identifier { get; set; } = string.Empty;
|
|
public string Value { get; set; } = string.Empty;
|
|
public bool KeyframesEnabled { get; set; }
|
|
|
|
public DataBindingEntity? DataBinding { get; set; }
|
|
public List<KeyframeEntity> KeyframeEntities { get; set; } = new();
|
|
} |