using System;
using RGB.NET.Core;
namespace RGB.NET.Devices.CoolerMaster
{
///
///
/// Specifies the of a field.
///
[AttributeUsage(AttributeTargets.Field)]
public class DeviceTypeAttribute : Attribute
{
#region Properties & Fields
///
/// Gets the .
///
public RGBDeviceType DeviceType { get; }
#endregion
#region Constructors
///
///
/// Internal constructor of the class.
///
/// The .
public DeviceTypeAttribute(RGBDeviceType deviceType)
{
this.DeviceType = deviceType;
}
#endregion
}
}