This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues or pull requests.
2018-12-01 19:09:48 -05:00

26 lines
522 B
C#

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DeskHubSharp
{
class RepoInfo
{
public RepoInfo()
{
}
public List<string> GetRepoInfoDataGrid()
{
List<string> stuff = RepoList.repoDetail.Select(x => x.full_name).ToList();
//stuff =+ RepoList.repoDetail.Select(x => x.name).ToList();
return stuff;
}
}
}