1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

13 lines
343 B
C#

using System;
namespace Artemis.Storage.Entities.Profile.DataBindings
{
public class DataBindingEntity
{
public string TargetExpression { get; set; }
public TimeSpan EasingTime { get; set; }
public int EasingFunction { get; set; }
public IDataBindingModeEntity DataBindingMode { get; set; }
}
}