namespace RGB.NET.Core { /// /// Represents a generic information for a /// public interface IRGBDeviceInfo { #region Properties & Fields /// /// Gets the of the . /// DeviceType DeviceType { get; } /// /// Gets the manufacturer-name of the . /// string Manufacturer { get; } /// /// Gets the model-name of the . /// string Model { get; } #endregion #region Methods #endregion } }