1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Artemis/src/Artemis.Core/Events/Profiles/DataBindingPropertyUpdatedEvent.cs
Robert 11de30318e Core - Added stores for the different register-able types
Profiles - Refactored large parts of the profile structure to use these stores
2020-09-09 19:56:06 +02:00

17 lines
380 B
C#

using System;
namespace Artemis.Core
{
public class DataBindingPropertyUpdatedEvent<T> : EventArgs
{
public DataBindingPropertyUpdatedEvent(T value)
{
Value = value;
}
/// <summary>
/// The updated value that should be applied to the layer property
/// </summary>
public T Value { get; }
}
}