added sort and search buttons

This commit is contained in:
Wyatt Miller
2018-12-07 00:43:42 -05:00
parent 1e8d6b4b25
commit 735d92147c
13 changed files with 111 additions and 26 deletions

View File

@ -6,14 +6,22 @@ using System.Threading.Tasks;
namespace DeskHubSharp
{
public static class Sort
public class Sort
{
public enum SortBox
public Sort()
{
Alphabettically,
MostStars,
MostForks,
MostWatchers
}
public List<string> GetSortTerms()
{
List<string> sortTerms = new List<string>();
sortTerms.Add("A - Z");
sortTerms.Add("Least to most Stars");
sortTerms.Add("Least to most Forks");
sortTerms.Add("Least to most Watchers");
return sortTerms;
}
}
}