SetVariablesRequest.cs 521 B

12345678910111213141516171819202122
  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 SetVariablesRequest
  11. {
  12. /// <summary>
  13. /// List of Component-Variable pairs and attribute
  14. ///values to set.
  15. /// </summary>
  16. [Required]
  17. public List<SetVariableDataType> SetVariableData { set; get; }
  18. }
  19. }