f4394fe2a0
Logging Repair for Non-Warranty jobs has been brought into line with Logging Warranty. RepairProviderFeature implemented which allows plugins to be used in submitting jobs to third-parties for repair.
24 lines
745 B
C#
24 lines
745 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using Disco.Services.Plugins;
|
|
using Disco.Models.UI.Config.DeviceModel;
|
|
|
|
namespace Disco.Web.Areas.Config.Models.DeviceModel
|
|
{
|
|
public class ShowModel : ConfigDeviceModelShowModel
|
|
{
|
|
public Disco.Models.Repository.DeviceModel DeviceModel { get; set; }
|
|
|
|
public ConfigDeviceModelComponentsModel DeviceComponentsModel { get; set; }
|
|
|
|
public List<PluginFeatureManifest> WarrantyProviders { get; set; }
|
|
public List<PluginFeatureManifest> RepairProviders { get; set; }
|
|
|
|
public int DeviceCount { get; set; }
|
|
public int DeviceDecommissionedCount { get; set; }
|
|
|
|
public bool CanDelete { get; set; }
|
|
}
|
|
} |