using Disco.Models.ClientServices; using Disco.Models.Repository; using System.Collections.Generic; namespace Disco.Services.Plugins.Features.CertificateProvider { public class ProvisionPersonalCertificateResult { /// /// The associated with the provision result. /// public Device Device { get; set; } /// /// The associated with the provision result. /// public Enrol Enrolment { get; set; } /// /// A list of assigned to the device. /// public List AllocatedCertificates { get; set; } /// /// A list of certificate thumbprints to be removed from the Personal Certificate store. /// Matching certificates will be removed unless they match the . /// public List RemoveCertificateThumbprints { get; set; } } }