1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00

19 lines
477 B
C#

namespace RGB.NET.Core
{
/// <summary>
/// Represents a generic Id of a <see cref="Led"/>.
/// </summary>
public interface ILedId
{
/// <summary>
/// Gets the <see cref="IRGBDevice"/> the <see cref="ILedId"/> belongs to.
/// </summary>
IRGBDevice Device { get; }
/// <summary>
/// Gets a value indicating if this <see cref="ILedId"/> is valid.
/// </summary>
bool IsValid { get; }
}
}