1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 10:08:31 +00:00
RGB.NET/RGB.NET.Core/ILedId.cs

14 lines
313 B
C#

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