Suppress "CA1051:Do not declare visible instance fields" for structs

This commit is contained in:
CleanCodeDeveloper 2022-03-08 23:22:31 +01:00
parent 85813a9b8f
commit bea215bffa
2 changed files with 2 additions and 0 deletions

View File

@ -4,6 +4,7 @@
namespace Awake.Core.Models
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Design", "CA1051:Do not declare visible instance fields", Justification = "This rule does not make sense for structs.")]
public struct BatteryReportingScale
{
public uint Granularity;

View File

@ -6,6 +6,7 @@ using System.Runtime.InteropServices;
namespace Awake.Core.Models
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Design", "CA1051:Do not declare visible instance fields", Justification = "This rule does not make sense for structs.")]
public struct SystemPowerCapabilities
{
[MarshalAs(UnmanagedType.U1)]