added models

This commit is contained in:
2022-06-29 13:03:02 -04:00
parent 0331399b36
commit bd53cb400b
9 changed files with 628 additions and 8 deletions

View File

@@ -1,6 +1,22 @@
using System.Collections.Generic;
namespace DeskHubSharpRevised.Models;
public class Sort
{
public Sort()
{
}
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;
}
}