RequestStopTransactionRequest.cs 529 B

1234567891011121314151617181920
  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 RequestStopTransactionRequest
  10. {
  11. /// <summary>
  12. /// The identifier of the transaction which the
  13. ///Charging Station is requested to stop
  14. /// </summary>
  15. [Required]
  16. [StringLength(36,MinimumLength =0)]
  17. public string TransactionId { set; get; }
  18. }
  19. }