2004-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Data / System.Data / DataRowState.cs
1 //
2 // System.Data.DataRowState.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 namespace System.Data
11 {
12         /// <summary>
13         /// Gets the state of a DataRow object.
14         /// </summary>
15         [Flags]
16         [Serializable]
17         public enum DataRowState
18         {
19                 Detached = 1,
20                 Unchanged = 2,
21                 Added = 4,
22                 Deleted = 8,
23                 Modified = 16
24         }
25
26 }