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