22 lines
518 B
C#
22 lines
518 B
C#
//------------------------------------------------------------------------------
|
|
// <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
|
|
|
|
}
|
|
}
|