using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Specifies values to indicate whether a property can be bound to a data element or another property.
// Token: 0x020000ED RID: 237
[Token(Token = "0x20000ED")]
public enum BindableSupport
{
/// The property is not bindable at design time.
// Token: 0x04000458 RID: 1112
[Token(Token = "0x4000458")]
No,
/// The property is bindable at design time.
// Token: 0x04000459 RID: 1113
[Token(Token = "0x4000459")]
Yes,
/// The property is set to the default.
// Token: 0x0400045A RID: 1114
[Token(Token = "0x400045A")]
Default
}
}