18 lines
549 B
C#
18 lines
549 B
C#
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; }
|
|
Repository.DeviceProfile.DistributionTypes DistributionType { get; set; }
|
|
|
|
int DeviceCount { get; set; }
|
|
int DeviceDecommissionedCount { get; set; }
|
|
bool IsLinked { get; set; }
|
|
}
|
|
}
|