Device enrollment information used for enrollment/registration process.
/// <summary>
/// DeviceRegister class.
/// </summary>
public class DeviceEnrollment
{
public string Id { get; set; }
public string Description { get; set; }
public string RequestId { get; set; }
public string Profile { get; set; }
public string Signature { get; set; }
public string Properties { get; set; }
}