1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
2020-06-13 22:27:51 +02:00

28 lines
684 B
C#

using System;
using System.Collections.Generic;
namespace Artemis.Storage.Entities.Profile
{
public class PropertyEntity
{
public PropertyEntity()
{
KeyframeEntities = new List<KeyframeEntity>();
}
public Guid PluginGuid { get; set; }
public string Path { get; set; }
public string Value { get; set; }
public bool KeyframesEnabled { get; set; }
public List<KeyframeEntity> KeyframeEntities { get; set; }
}
public class KeyframeEntity
{
public TimeSpan Position { get; set; }
public string Value { get; set; }
public int EasingFunction { get; set; }
}
}