using System.Collections.Generic; namespace Disco.Models.ClientServices.EnrolmentInformation { public class CertificateStore { public List TrustedRootCertificates { get; set; } public List TrustedRootRemoveThumbprints { get; set; } public List IntermediateCertificates { get; set; } public List IntermediateRemoveThumbprints { get; set; } public List PersonalCertificates { get; set; } public List PersonalRemoveThumbprints { get; set; } } }