4c91d03385
Flag Document Templates as hidden. UI changes aim to improve visibility of used features in lists.
18 lines
556 B
C#
18 lines
556 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; }
|
|
Models.Repository.DeviceProfile.DistributionTypes DistributionType { get; set; }
|
|
|
|
int DeviceCount { get; set; }
|
|
int DeviceDecommissionedCount { get; set; }
|
|
bool IsLinked { get; set; }
|
|
}
|
|
}
|