// ReSharper disable MemberCanBePrivate.Global // ReSharper disable AutoPropertyCanBeMadeGetOnly.Global using System.Drawing; using CUE.NET.Devices.Generic.Enums; namespace CUE.NET.Devices.Generic { /// /// Represents a request to update a led. /// public class LedUpateRequest { #region Properties & Fields /// /// Gets the id of the led to update. /// public CorsairLedId LedId { get; } /// /// Gets the requested color of the led. /// public Color Color { get; set; } #endregion #region Constructors /// /// Initializes a new instance of the class. /// /// The id of the led to update. /// The requested color of the led. public LedUpateRequest(CorsairLedId ledId, Color color) { this.LedId = ledId; this.Color = color; } #endregion } }