// ReSharper disable MemberCanBePrivate.Global
// ReSharper disable UnusedAutoPropertyAccessor.Global
using System;
using System.Collections.Generic;
namespace RGB.NET.Core
{
///
/// Represents the information supplied with an -event.
///
public class LedsUpdatedEventArgs : EventArgs
{
#region Properties & Fields
///
/// Gets a list of which got updated.
///
public IEnumerable UpdatedLeds { get; }
#endregion
#region Constructors
///
/// Initializes a new instance of the class.
///
/// The updated .
public LedsUpdatedEventArgs(IEnumerable updatedLeds)
{
this.UpdatedLeds = updatedLeds;
}
#endregion
}
}