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

18 lines
449 B
C#

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