/// <summary> /// Initializes a new instance of the <see cref="SignCertDTO" /> class. /// </summary> /// <param name="id">Identifier.</param> /// <param name="certId">Certificate Identifier.</param> /// <param name="requestOtp">Request OTP.</param> /// <param name="certDescription">Certificate Description.</param> /// <param name="signCertType">Type.</param> /// <param name="delegante">Delegating.</param> public SignCertDTO(int?id = default(int?), string certId = default(string), bool?requestOtp = default(bool?), string certDescription = default(string), SignCertTypeDTO signCertType = default(SignCertTypeDTO), string delegante = default(string)) { this.Id = id; this.CertId = certId; this.RequestOtp = requestOtp; this.CertDescription = certDescription; this.SignCertType = signCertType; this.Delegante = delegante; }
/// <summary> /// Initializes a new instance of the <see cref="SignCertDTO" /> class. /// </summary> /// <param name="Id">Identifier.</param> /// <param name="CertId">Certificate Identifier.</param> /// <param name="RequestOtp">Request OTP.</param> /// <param name="CertDescription">Certificate Description.</param> /// <param name="SignCertType">Type.</param> /// <param name="Delegante">Delegating.</param> public SignCertDTO(int?Id = default(int?), string CertId = default(string), bool?RequestOtp = default(bool?), string CertDescription = default(string), SignCertTypeDTO SignCertType = default(SignCertTypeDTO), string Delegante = default(string)) { this.Id = Id; this.CertId = CertId; this.RequestOtp = RequestOtp; this.CertDescription = CertDescription; this.SignCertType = SignCertType; this.Delegante = Delegante; }