using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Specifies whether the template can be bound one way or two ways.
// Token: 0x020000EA RID: 234
[Token(Token = "0x20000EA")]
public enum BindingDirection
{
/// The template can only accept property values. Used with a generic .
// Token: 0x0400044F RID: 1103
[Token(Token = "0x400044F")]
OneWay,
/// The template can accept and expose property values. Used with an .
// Token: 0x04000450 RID: 1104
[Token(Token = "0x4000450")]
TwoWay
}
}