CancelReservationRequest.cs 417 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 CancelReservationRequest
  10. {
  11. /// <summary>
  12. /// Id of the reservation to cancel
  13. /// </summary>
  14. [Required]
  15. public int ReservationId { set; get; }
  16. }
  17. }