1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 17:48:31 +00:00
RGB.NET/RGB.NET.Devices.Wooting/Generic/WootingRGBDeviceInfo.cs
2025-06-18 19:01:20 +01:00

37 lines
750 B
C#

using RGB.NET.Core;
namespace RGB.NET.Devices.Wooting.Generic;
public abstract class WootingRGBDeviceInfo : IRGBDeviceInfo
{
#region Properties & Fields
/// <inheritdoc />
public RGBDeviceType DeviceType { get; }
/// <inheritdoc />
public string DeviceName { get; }
/// <inheritdoc />
public string Manufacturer => "Wooting";
/// <inheritdoc />
public string Model { get; }
/// <inheritdoc />
public object? LayoutMetadata { get; set; }
#endregion
#region Constructors
protected WootingRGBDeviceInfo(RGBDeviceType deviceType, string model, string name)
{
this.DeviceType = deviceType;
this.Model = model;
this.DeviceName = name;
}
#endregion
}