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