diff --git a/Models/DashboardViewModel.cs b/Models/DashboardViewModel.cs index 5d992f7..576c1fc 100644 --- a/Models/DashboardViewModel.cs +++ b/Models/DashboardViewModel.cs @@ -8,6 +8,8 @@ namespace Disco.Plugins.ServiceTracker.Models public List Tiles { get; set; } public List ReadyForReturn { get; set; } public List OnHold { get; set; } + public List AwaitingVendor { get; set; } + public List AwaitingParts { get; set; } public List Resolved { get; set; } public DashboardStats Stats { get; set; } public ServiceTrackerConfig Config { get; set; } @@ -20,6 +22,8 @@ namespace Disco.Plugins.ServiceTracker.Models Tiles = new List(); ReadyForReturn = new List(); OnHold = new List(); + AwaitingVendor = new List(); + AwaitingParts = new List(); Resolved = new List(); Stats = new DashboardStats(); } @@ -52,7 +56,6 @@ namespace Disco.Plugins.ServiceTracker.Models /// /// For NTT sheet jobs: the raw location text from the sheet when it could not be matched /// to a configured Disco location. Null if the location was matched or if this is a Disco job. - /// Displayed on the tile as a plain location pill alongside the fallback location badge. /// public string RawSheetLocation { get; set; } public string AssignedTechId { get; set; }