this really works. gonna merge soon
This commit is contained in:
@ -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;
|
||||
|
@ -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
|
||||
{
|
||||
|
Reference in New Issue
Block a user