// ReSharper disable MemberCanBePrivate.Global
// ReSharper disable AutoPropertyCanBeMadeGetOnly.Global
using System.Drawing;
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 int 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(int ledId, Color color)
{
this.LedId = ledId;
this.Color = color;
}
#endregion
}
}