// dnlib: See LICENSE.txt for more info
using System;
namespace dnlib.DotNet {
///
/// Property attributes, see CorHdr.h/CorPropertyAttr
///
[Flags]
public enum PropertyAttributes : ushort {
/// property is special. Name describes how.
SpecialName = 0x0200,
/// Runtime(metadata internal APIs) should check name encoding.
RTSpecialName = 0x0400,
/// Property has default
HasDefault = 0x1000,
}
}