mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
26 lines
573 B
C#
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
|
|
}
|
|
}
|