19503366c4
More information about device membership in Batches, Profiles and Models.
21 lines
520 B
C#
21 lines
520 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Disco.Models.UI.Config.DeviceModel
|
|
{
|
|
public interface ConfigDeviceModelShowModel : BaseUIModel
|
|
{
|
|
Disco.Models.Repository.DeviceModel DeviceModel { get; set; }
|
|
|
|
ConfigDeviceModelComponentsModel DeviceComponentsModel { get; set; }
|
|
|
|
int DeviceCount { get; set; }
|
|
int DeviceDecommissionedCount { get; set; }
|
|
|
|
bool CanDelete { get; set; }
|
|
}
|
|
}
|