ClearChargingProfileRequest.cs 571 B

12345678910111213141516171819202122
  1. using EVCB_OCPP.Packet20.DataTypes;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace EVCB_OCPP.Packet20.Messages
  8. {
  9. public class ClearChargingProfileRequest
  10. {
  11. /// <summary>
  12. /// The Id of the charging profile to clear.
  13. /// </summary>
  14. public int ChargingProfileId { set; get; }
  15. /// <summary>
  16. /// Specifies the charging profile.
  17. /// </summary>
  18. public ClearChargingProfileType ChargingProfileCriteria { set; get; }
  19. }
  20. }