Files
JavaScriptServices/samples/react/MusicStore/Infrastructure/SortDirection.cs
2016-02-05 23:28:13 +00:00

14 lines
221 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace MusicStore.Infrastructure
{
public enum SortDirection
{
Ascending,
Descending
}
}