using System.Collections.ObjectModel;
namespace DeskHubSharpRevised.Models;
public class RequestList
{
///
/// Stores everything in User, typically from the request
///
public static User userDetail { get; set; }
///
/// Stores everything sent in Branch, typically from request
///
public static ObservableCollection branchDetail { get; set; }
///
/// Stores everything sent in RepoDetail, typically from request
///
public static ObservableCollection repoDetail { get; set; }
}