2002-09-21 Piers Haken <piersh@friskit.com>
[mono.git] / mcs / class / System.XML / System.Xml.XPath / XmlDataType.cs
1 //
2 // System.Xml.XPath.XmlDataType
3 //
4 // Author:
5 //   Jason Diamond (jason@injektilo.org)
6 //
7 // (C) 2002 Jason Diamond  http://injektilo.org/
8 //
9
10 namespace System.Xml.XPath
11 {
12         public enum XmlDataType
13         {
14                 Text = 1,
15                 Number = 2,
16         }
17 }