mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
29 lines
537 B
C#
29 lines
537 B
C#
// ReSharper disable MemberCanBePrivate.Global
|
|
// ReSharper disable AutoPropertyCanBeMadeGetOnly.Global
|
|
|
|
using System.Drawing;
|
|
|
|
namespace CUE.NET.Devices.Generic
|
|
{
|
|
public class LedUpateRequest
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public int LedId { get; }
|
|
|
|
public Color Color { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public LedUpateRequest(int ledId, Color color)
|
|
{
|
|
this.LedId = ledId;
|
|
this.Color = color;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|