Files
Disco/Disco.Models/ClientServices/EnrolResponse.cs
T
2024-01-24 16:38:50 +11:00

38 lines
1.2 KiB
C#

using Disco.Models.ClientServices.EnrolmentInformation;
using System;
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; }
public bool IsPending { get; set; }
public string PendingAuthorization { get; set; }
public string PendingReason { get; set; }
public DateTimeOffset PendingTimeout { get; set; }
public string PendingIdentifier { get; set; }
}
}