#pragma warning disable 169 // Field 'x' is never used #pragma warning disable 414 // Field 'x' is assigned but its value never used #pragma warning disable 649 // Field 'x' is never assigned #pragma warning disable IDE1006 // Naming Styles using System.Runtime.InteropServices; namespace RGB.NET.Devices.Corsair.Native; // ReSharper disable once InconsistentNaming /// /// iCUE-SDK: contains information about device property type and value /// [StructLayout(LayoutKind.Sequential)] internal struct _CorsairProperty { #region Properties & Fields /// /// iCUE-SDK: type of property /// internal CorsairDataType type; /// /// iCUE-SDK: property value /// internal _CorsairDataValue value; #endregion }