mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +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
9 lines
252 B
C#
9 lines
252 B
C#
using Artemis.Storage.Legacy.Entities.Profile.Nodes;
|
|
|
|
namespace Artemis.Storage.Legacy.Entities.Profile.DataBindings;
|
|
|
|
internal class DataBindingEntity
|
|
{
|
|
public bool IsEnabled { get; set; }
|
|
public NodeScriptEntity? NodeScript { get; set; }
|
|
} |