Files
deskhubsharprevised/DeskHubSharpRevised/Models/RequestList.cs

21 lines
613 B
C#
Raw Normal View History

2022-06-29 13:03:02 -04:00
using System.Collections.ObjectModel;
2022-06-29 12:59:53 -04:00
namespace DeskHubSharpRevised.Models;
public class RequestList
{
2022-06-29 13:03:02 -04:00
/// <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; }
2022-06-29 12:59:53 -04:00
}