using System;
using Cpp2IlInjected;
namespace System.Data
{
/// Describes the version of a .
// Token: 0x02000034 RID: 52
[Token(Token = "0x2000034")]
public enum DataRowVersion
{
/// The row contains its original values.
// Token: 0x040000AA RID: 170
[Token(Token = "0x40000AA")]
Original = 256,
/// The row contains current values.
// Token: 0x040000AB RID: 171
[Token(Token = "0x40000AB")]
Current = 512,
/// The row contains a proposed value.
// Token: 0x040000AC RID: 172
[Token(Token = "0x40000AC")]
Proposed = 1024,
/// The default version of . For a value of , or , the default version is . For a value of , the version is .
// Token: 0x040000AD RID: 173
[Token(Token = "0x40000AD")]
Default = 1536
}
}