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