added models

This commit is contained in:
2022-06-29 13:03:02 -04:00
parent 0331399b36
commit bd53cb400b
9 changed files with 628 additions and 8 deletions

View File

@@ -1,6 +1,21 @@
using System.Collections.ObjectModel;
namespace DeskHubSharpRevised.Models;
public class RequestList
{
/// <summary>
/// Stores everything in User, typically from the request
/// </summary>
public static User userDetail { get; set; }
/// <summary>
/// Stores everything sent in Branch, typically from request
/// </summary>
public static ObservableCollection<Branch> branchDetail { get; set; }
/// <summary>
/// Stores everything sent in RepoDetail, typically from request
/// </summary>
public static ObservableCollection<RepoDetail> repoDetail { get; set; }
}