mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 09:38:31 +00:00
11 lines
250 B
C#
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; }
|
|
} |