// ReSharper disable CheckNamespace
// ReSharper disable ConditionalAnnotation
using JetBrains.Annotations;
namespace System.Runtime.CompilerServices;
/// Polyfill to enable netstandard2.0 assembly to use the required keyword.
/// Excluded from output assembly via file specified in ApiCompatExcludeAttributesFile element in the project file.
[AttributeUsage (AttributeTargets.Property)]
[UsedImplicitly]
public sealed class RequiredMemberAttribute : Attribute;