using System; using RGB.NET.Core; namespace RGB.NET.Devices.Asus { /// /// /// Represents a generic information for a Corsair-. /// public class AsusRGBDeviceInfo : IRGBDeviceInfo { #region Properties & Fields /// public RGBDeviceType DeviceType { get; } /// public string Manufacturer { get; } /// public string Model { get; } /// public Uri Image { get; protected set; } /// public RGBDeviceLighting Lighting => RGBDeviceLighting.Key; /// /// Gets the index of the . /// internal IntPtr Handle { get; } #endregion #region Constructors /// /// Internal constructor of managed . /// /// The type of the . /// The handle of the . /// The manufacturer-name of the . /// The model-name of the . internal AsusRGBDeviceInfo(RGBDeviceType deviceType, IntPtr handle, string manufacturer = "Unknown", string model = "Generic Asus-Device") { this.DeviceType = deviceType; this.Handle = handle; this.Manufacturer = manufacturer; this.Model = model; } #endregion } }