mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
18 lines
449 B
C#
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
|
|
} |