1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2026-03-24 18:28:49 +00:00

13 lines
435 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; } = [];
}