//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// amirhmy
// markash
// jasonzhu
//------------------------------------------------------------------------------
namespace System.Data {
using System.Configuration.Assemblies;
using System.Diagnostics;
public enum DataRowVersion {
Original = 0x0100,
Current = 0x0200,
Proposed = 0x0400,
Default = Proposed | Current,
}
}