Update: Additional UI Extension Hooks
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Disco.Models.UI.Config.DeviceBatch
|
||||
{
|
||||
public interface ConfigDeviceBatchShowModel : BaseUIModel
|
||||
{
|
||||
Disco.Models.Repository.DeviceBatch DeviceBatch { get; set; }
|
||||
List<Disco.Models.Repository.DeviceModel> DeviceModels { get; set; }
|
||||
int DeviceCount { get; set; }
|
||||
int DeviceDecommissionedCount { get; set; }
|
||||
bool CanDelete { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user