using System; using RGB.NET.Core; namespace RGB.NET.Devices.Novation { /// /// Represents a generic information for a Corsair-. /// public class NovationRGBDeviceInfo : IRGBDeviceInfo { #region Properties & Fields /// public RGBDeviceType DeviceType { get; } /// public string Manufacturer => "Novation"; /// public string Model { get; } /// public Uri Image { get; protected set; } /// public RGBDeviceLighting Lighting => RGBDeviceLighting.Key; #endregion #region Constructors /// /// Internal constructor of managed . /// /// The type of the . /// The represented device model. internal NovationRGBDeviceInfo(RGBDeviceType deviceType, string model) { this.DeviceType = deviceType; this.Model = model; } #endregion } }