// 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 RazerKeypadRGBDeviceInfo : RazerRGBDeviceInfo { #region Constructors /// /// /// Internal constructor of managed . /// /// The Id of the . /// The model of the . internal RazerKeypadRGBDeviceInfo(Guid deviceId, string model) : base(deviceId, RGBDeviceType.Keypad, model) { string modelName = Model.Replace(" ", string.Empty).ToUpper(); Image = new Uri(PathHelper.GetAbsolutePath($@"Images\Razer\Keypads\{modelName}.png"), UriKind.Absolute); } #endregion } }