mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
19 lines
519 B
C#
19 lines
519 B
C#
using RGB.NET.Core;
|
|
|
|
namespace RGB.NET.Devices.DynamicLighting;
|
|
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Represents a generic information for a <see cref="T:RGB.NET.Devices.DynamicLighting.DynamicLightingArtRGBDevice" />.
|
|
/// </summary>
|
|
public sealed class DynamicLightingArtRGBDeviceInfo : DynamicLightingRGBDeviceInfo
|
|
{
|
|
#region Constructors
|
|
|
|
/// <inheritdoc />
|
|
internal DynamicLightingArtRGBDeviceInfo(LampArrayInfo lampArrayInfo)
|
|
: base(RGBDeviceType.Art, lampArrayInfo)
|
|
{ }
|
|
|
|
#endregion
|
|
} |