// ReSharper disable MemberCanBePrivate.Global
// ReSharper disable UnusedMember.Global
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 model of the .
internal RazerKeyboardRGBDeviceInfo(string model)
: base(RGBDeviceType.Keyboard, model)
{ }
#endregion
}
}