Files
Disco/Disco.Models/ClientServices/EnrolResponse.cs
T
Gary Sharp 27c21175d7 Certificate/wireless plugins; major refactoring
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.
2016-09-28 20:17:55 +10:00

31 lines
924 B
C#

using Disco.Models.ClientServices.EnrolmentInformation;
namespace Disco.Models.ClientServices
{
public class EnrolResponse
{
public string SessionId { get; set; }
public string DomainName { get; set; }
public string ComputerName { get; set; }
public string AssignedUserDomain { get; set; }
public string AssignedUserUsername { get; set; }
public string AssignedUserSID { get; set; }
public string AssignedUserDescription { get; set; }
public bool AssignedUserIsLocalAdmin { get; set; }
public string OfflineDomainJoinManifest { get; set; }
public CertificateStore Certificates { get; set; }
public WirelessProfileStore WirelessProfiles { get; set; }
public bool AllowBootstrapperUninstall { get; set; }
public bool RequireReboot { get; set; }
public string ErrorMessage { get; set; }
}
}