this really works. gonna merge soon

This commit is contained in:
Wyatt Miller
2018-11-30 02:15:46 -05:00
parent a75121e187
commit 3531728a07
14 changed files with 196 additions and 18 deletions

View File

@ -14,11 +14,11 @@ namespace DeskHubSharp
}
public ObservableCollection<RepoDetail> GetRepoInfoDataGrid()
public ObservableCollection<string> GetRepoInfoDataGrid()
{
ObservableCollection<RepoDetail> repoStuff = new ObservableCollection<RepoDetail>();
ObservableCollection<string> repoStuff = new ObservableCollection<string>();
RepoDetail repo = new RepoDetail();
//repoStuff.Add(RepoList.repoDetail[3]);
repoStuff.Add(Convert.ToString(RepoList.repoDetail.Select(x => x.name)));
//repoStuff.Add(repo.url);
return repoStuff;

View File

@ -9,7 +9,9 @@ namespace DeskHubSharp
{
class RepoList
{
public static ObservableCollection<RepoDetail> _repoDetail;
private static ObservableCollection<RepoDetail> _repoDetail;
public static User userDetail { get; set; }
public static ObservableCollection<RepoDetail> repoDetail
{