GetConfigurationFeature.cs 671 B

12345678910111213141516171819202122232425262728
  1. using EVCB_OCPP.Packet.Features.Core;
  2. using EVCB_OCPP.Packet.Messages.Core;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace EVCB_OCPP.Packet.Features.Core
  9. {
  10. public class GetConfigurationFeature : Feature
  11. {
  12. public override string GetAction()
  13. {
  14. return Actions.GetConfiguration.ToString();
  15. }
  16. public override Type GetConfirmationType()
  17. {
  18. return typeof(GetConfigurationConfirmation);
  19. }
  20. public override Type GetRequestType()
  21. {
  22. return typeof(GetConfigurationRequest);
  23. }
  24. }
  25. }