GetTransactionStatusRequest.cs 489 B

12345678910111213141516171819
  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 GetTransactionStatusRequest
  10. {
  11. /// <summary>
  12. /// The Id of the transaction for which the status is
  13. ///requested.
  14. /// </summary>
  15. [StringLength(36, MinimumLength = 0)]
  16. public string TransactionId { set; get; }
  17. }
  18. }