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.
Wyatt Miller 4a7c908a77 testing
2018-11-29 15:37:45 -05:00

21 lines
452 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 RepoList
{
public static ObservableCollection<RepoDetail> _repoDetail;
public static ObservableCollection<RepoDetail> repoDetail
{
get { return _repoDetail; }
set { _repoDetail = value; }
}
}
}