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/LedsUpdatingEventArgs.cs

26 lines
579 B
C#

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