feature: specify device profile/batch during pending enrolment

This commit is contained in:
Gary Sharp
2025-06-27 14:51:03 +10:00
parent 57ae665070
commit 8b8b26116e
13 changed files with 418 additions and 156 deletions
@@ -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; }
}
}