1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-13 00:58:31 +00:00
CUE.NET/Devices/Generic/EventArgs/LedsUpdatedEventArgs.cs

26 lines
573 B
C#

// ReSharper disable MemberCanBePrivate.Global
// ReSharper disable UnusedAutoPropertyAccessor.Global
using System.Collections.Generic;
namespace CUE.NET.Devices.Generic.EventArgs
{
public class LedsUpdatedEventArgs : System.EventArgs
{
#region Properties & Fields
public IEnumerable<LedUpateRequest> UpdatedLeds { get; }
#endregion
#region Constructors
public LedsUpdatedEventArgs(IEnumerable<LedUpateRequest> updatedLeds)
{
this.UpdatedLeds = updatedLeds;
}
#endregion
}
}