Microsoft.CSharp.RuntimeBinder.Semantics.PropertySymbol
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal class PropertySymbol : MethodOrPropertySymbol
{
public MethodSymbol GetterMethod { get; set; }
public MethodSymbol SetterMethod { get; set; }
public PropertyInfo AssociatedPropertyInfo { get; set; }
public bool Bogus { get; set; }
public PropertySymbol();
}
}