feature: specify device profile/batch during pending enrolment
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using Disco.Models.ClientServices.EnrolmentInformation;
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
|
||||
namespace Disco.Models.ClientServices
|
||||
@@ -10,6 +11,11 @@ namespace Disco.Models.ClientServices
|
||||
public string DomainName { get; set; }
|
||||
public string ComputerName { get; set; }
|
||||
|
||||
[JsonIgnore]
|
||||
public int? DeviceProfileId { get; set; }
|
||||
[JsonIgnore]
|
||||
public int? DeviceBatchId { get; set; }
|
||||
|
||||
public string AssignedUserDomain { get; set; }
|
||||
public string AssignedUserUsername { get; set; }
|
||||
public string AssignedUserSID { get; set; }
|
||||
|
||||
@@ -1,6 +1,11 @@
|
||||
namespace Disco.Models.UI.Config.Enrolment
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Disco.Models.UI.Config.Enrolment
|
||||
{
|
||||
public interface ConfigEnrolmentStatusModel : BaseUIModel
|
||||
{
|
||||
int DefaultDeviceProfileId { get; set; }
|
||||
List<Repository.DeviceProfile> DeviceProfiles { get; set; }
|
||||
List<Repository.DeviceBatch> DeviceBatches { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user