// ReSharper disable MemberCanBePrivate.Global // ReSharper disable UnusedMember.Global using System; using RGB.NET.Core; namespace RGB.NET.Devices.Razer { /// /// Represents a generic information for a . /// public class RazerKeyboardRGBDeviceInfo : RazerRGBDeviceInfo, IKeyboardDeviceInfo { #region Properties & Fields /// public KeyboardLayoutType Layout => KeyboardLayoutType.Unknown; #endregion #region Constructors /// /// /// Internal constructor of managed . /// /// The Id of the . /// The model of the . internal RazerKeyboardRGBDeviceInfo(Guid deviceId, string model) : base(deviceId, RGBDeviceType.Keyboard, model) { } #endregion } }