// 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 LedsUpdatingEventArgs : System.EventArgs { #region Properties & Fields /// /// Gets a list of from the updating leds. /// public ICollection UpdatingLeds { get; } #endregion #region Constructors /// /// Initializes a new instance of the class. /// /// The updating leds. public LedsUpdatingEventArgs(ICollection updatingLeds) { this.UpdatingLeds = updatingLeds; } #endregion } }