using System; using RGB.NET.Core; namespace RGB.NET.Devices.Asus { /// /// /// Represents a generic information for a . /// public class AsusMainboardRGBDeviceInfo : AsusRGBDeviceInfo { #region Properties & Fields /// public override bool SupportsSyncBack => true; #endregion #region Constructors /// /// /// Internal constructor of managed . /// /// The type of the . /// The handle of the . internal AsusMainboardRGBDeviceInfo(RGBDeviceType deviceType, IntPtr handle) : base(deviceType, handle, WMIHelper.GetMainboardInfo()?.model ?? "Generic Asus-Device") { } #endregion } }