Files
deskhubsharprevised/DeskHubSharpRevised/Models/RequestList.cs
2022-06-29 13:03:02 -04:00

21 lines
613 B
C#

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; }
}