22 lines
518 B
C#
Raw Normal View History

//------------------------------------------------------------------------------
// <copyright file="SortDirection.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.UI.WebControls {
using System;
public enum SortDirection {
Ascending = 0,
Descending = 1
}
}