mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
17 lines
380 B
C#
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; }
|
|
}
|
|
} |