// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
using System;
namespace System.Runtime.CompilerServices
{
//|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Interface,
AllowMultiple=false, Inherited=false)]
public sealed class RequiredAttributeAttribute : Attribute
{
//|
public RequiredAttributeAttribute (Type requiredContract);
//|
public Type RequiredContract { get; }
}
}