using System;
namespace System.ComponentModel
{
/// Specifies the direction of a sort operation.
// Token: 0x020000A9 RID: 169
public enum ListSortDirection
{
/// Sorts in ascending order.
// Token: 0x0400019F RID: 415
Ascending,
/// Sorts in descending order.
// Token: 0x040001A0 RID: 416
Descending
}
}