1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 17:48:31 +00:00
RGB.NET/RGB.NET.Devices.WLED/Generic/IWledDeviceDefinition.cs

11 lines
250 B
C#

namespace RGB.NET.Devices.WLED;
/// <summary>
/// Represents the data used to create a WLED-device.
/// </summary>
public interface IWledDeviceDefinition
{
string Address { get; }
string? Manufacturer { get; }
string? Model { get; }
}