System.ComponentModel.DefaultPropertyAttribute
namespace System.ComponentModel
{
public sealed class DefaultPropertyAttribute : Attribute
{
public static readonly DefaultPropertyAttribute Default;
public string Name { get; }
public DefaultPropertyAttribute(string name);
}
}