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