namespace RGB.NET.Devices.WLED;
///
public class WledDeviceDefinition(string address, string? manufacturer = null, string? model = null) : IWledDeviceDefinition
{
#region Properties & Fields
///
public string Address { get; } = address;
///
public string? Manufacturer { get; } = manufacturer;
///
public string? Model { get; } = model;
#endregion
}