Files
Disco/Disco.Models/UI/Config/DeviceModel/ConfigDeviceModelIndexModelItem.cs
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

20 lines
503 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 ConfigDeviceModelIndexModelItem
{
int Id { get; set; }
string Name { get; set; }
string Manufacturer { get; set; }
string Model { get; set; }
string ModelType { get; set; }
int DeviceCount { get; set; }
int DeviceDecommissionedCount { get; set; }
}
}