mirror of
https://github.com/Artemis-RGB/Artemis
synced 2026-01-02 18:53:32 +00:00
Display conditions - Added docs to the service and profile types Color gradient - Added docs Storage - Moved profile entities to separate namespaces Data bindings - Added entities to storage Data bindings - Started implementing in the core
12 lines
287 B
C#
12 lines
287 B
C#
using System;
|
|
|
|
namespace Artemis.Storage.Entities.Profile
|
|
{
|
|
public class KeyframeEntity
|
|
{
|
|
public TimeSpan Position { get; set; }
|
|
public int Timeline { get; set; }
|
|
public string Value { get; set; }
|
|
public int EasingFunction { get; set; }
|
|
}
|
|
} |