// // System.Data.ObjectSpaces.Query.OrderByItem // // // Author: // Richard Thombs (stony@stony.org) // #if NET_1_2 using System; namespace System.Data.ObjectSpaces.Query { [MonoTODO()] public class OrderByItem { [MonoTODO()] public OrderByItem(string item,bool ascendent) { throw new NotImplementedException(); } [MonoTODO()] public bool Ascendent { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } [MonoTODO()] public string Item { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } [MonoTODO()] public object PhysicalInfo { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } } } #endif