10 lines
283 B
C#
10 lines
283 B
C#
namespace Disco.Models.UI.Config.DeviceBatch
|
|
{
|
|
public interface ConfigDeviceBatchShowModelMembership : BaseUIModel
|
|
{
|
|
Repository.DeviceModel DeviceModel { get; set; }
|
|
int DeviceCount { get; set; }
|
|
int DeviceDecommissionedCount { get; set; }
|
|
}
|
|
}
|