a099d68915
Initial Release; Includes Database and MVC refactoring
24 lines
682 B
C#
24 lines
682 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; }
|
|
|
|
Disco.Models.Repository.DeviceModel DefaultDeviceModel { 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; }
|
|
}
|
|
}
|