UnlockConnectorRequest.cs 655 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace EVCB_OCPP.Packet20.Messages
  8. {
  9. public class UnlockConnectorRequest
  10. {
  11. /// <summary>
  12. /// This contains the identifier of the EVSE for
  13. /// which a connector needs to be unlocked
  14. /// </summary>
  15. [Required]
  16. public int EvseId { set; get; }
  17. /// <summary>
  18. /// This contains the identifier of the connector
  19. ///that needs to be unlocked
  20. /// </summary>
  21. public int ConnectorId { set; get; }
  22. }
  23. }