using System; using RGB.NET.Core; namespace RGB.NET.Devices.WS281X.Bitwizard { // ReSharper disable once InconsistentNaming /// /// /// Represents a generic information for a . /// public class BitwizardWS2812USBDeviceInfo : IRGBDeviceInfo { #region Properties & Fields /// public string DeviceName { get; } /// public RGBDeviceType DeviceType => RGBDeviceType.LedStripe; /// public string Manufacturer => "Bitwizard"; /// public string Model => "WS2812 USB"; /// public RGBDeviceLighting Lighting => RGBDeviceLighting.Key; /// public bool SupportsSyncBack => false; /// public Uri Image { get; set; } #endregion #region Constructors /// /// Initializes a new instance of the class. /// /// The name of this device. public BitwizardWS2812USBDeviceInfo(string name) { this.DeviceName = name; } #endregion } }