27c21175d7
Migrate much of BI to Services. Added Wireless Profile Provider plugin feature. Added Certificate Authority Provider plugin feature. Modified Certificate Provider plugin feature. Database migration v17, for Device Profiles. Enrolment Client Updated to support CA Certificates, Wireless Profiles and Hardware Info. New Client Enrolment Protocol to support new features. Plugin Manifest Generator added to main solution. Improved AD search performance.
30 lines
849 B
C#
30 lines
849 B
C#
using Disco.Models.ClientServices.EnrolmentInformation;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Disco.Models.ClientServices
|
|
{
|
|
public class Enrol : ServiceBase<EnrolResponse>
|
|
{
|
|
public override string Feature
|
|
{
|
|
get { return "Enrol"; }
|
|
}
|
|
|
|
public string SerialNumber { get; set; }
|
|
|
|
public string DNSDomainName { get; set; }
|
|
public string ComputerName { get; set; }
|
|
public bool IsPartOfDomain { get; set; }
|
|
|
|
public string RunningUserName { get; set; }
|
|
public string RunningUserDomain { get; set; }
|
|
public bool RunningInteractively { get; internal set; }
|
|
|
|
public DeviceHardware Hardware { get; set; }
|
|
|
|
public List<Certificate> Certificates { get; set; }
|
|
|
|
public List<WirelessProfile> WirelessProfiles { get; set; }
|
|
}
|
|
}
|