DeleteCertificateRequest.cs 515 B

1234567891011121314151617181920
  1. using EVCB_OCPP.Packet20.DataTypes;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace EVCB_OCPP.Packet20.Messages
  9. {
  10. public class DeleteCertificateRequest
  11. {
  12. /// <summary>
  13. /// Indicates the certificate of which deletion is
  14. ///requested.
  15. /// </summary>
  16. [Required]
  17. public CertificateHashDataType CertificateHashData { set; get; }
  18. }
  19. }