26 lines
522 B
C#
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;
|
|
}
|
|
|
|
}
|
|
}
|