Files
Disco/Disco.Models/UI/Config/DeviceProfile/ConfigDeviceProfileIndexModelItem.cs
T
Gary Sharp 60f7384c97 Update: Job Entity -> Enum Support 2
Support the DistributionType Enum in Device Profiles
2013-09-09 15:09:28 +10:00

23 lines
637 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Disco.Models.UI.Config.DeviceProfile
{
public interface ConfigDeviceProfileIndexModelItem
{
int Id { get; set; }
string Name { get; set; }
string ShortName { get; set; }
int? Address { get; set; }
string AddressName { get; set; }
string Description { get; set; }
Models.Repository.DeviceProfile.DistributionTypes DistributionType { get; set; }
int DeviceCount { get; set; }
int DeviceDecommissionedCount { get; set; }
}
}