using RGB.NET.Core; namespace RGB.NET.Devices.Wooting.Generic; public abstract class WootingRGBDeviceInfo : IRGBDeviceInfo { #region Properties & Fields /// public RGBDeviceType DeviceType { get; } /// public string DeviceName { get; } /// public string Manufacturer => "Wooting"; /// public string Model { get; } /// 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 }