60f7384c97
Support the DistributionType Enum in Device Profiles
23 lines
637 B
C#
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; }
|
|
}
|
|
}
|