Files
Disco/Disco.Models/UI/Config/DeviceBatch/ConfigDeviceBatchShowModel.cs
T
Gary Sharp 19503366c4 Update: Device Count Details
More information about device membership in Batches, Profiles and
Models.
2013-07-25 17:47:40 +10:00

21 lines
603 B
C#

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; }
List<ConfigDeviceBatchShowModelMembership> DeviceModelMembers { get; set; }
int DeviceCount { get; set; }
int DeviceDecommissionedCount { get; set; }
bool CanDelete { get; set; }
}
}