SetNetworkProfileRequest.cs 662 B

1234567891011121314151617181920212223242526
  1. using EVCB_OCPP.Packet20.DataTypes;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace EVCB_OCPP.Packet20.Messages
  9. {
  10. public class SetNetworkProfileRequest
  11. {
  12. /// <summary>
  13. /// Slot in which the configuration should be
  14. /// stored.
  15. /// </summary>
  16. [Required]
  17. public int ConfigurationSlot { set; get; }
  18. /// <summary>
  19. /// Connection details.
  20. /// </summary>
  21. [Required]
  22. public NetworkConnectionProfileType ConnectionData { set; get; }
  23. }
  24. }