GetVariablesResponse.cs 428 B

12345678910111213141516171819
  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 GetVariablesResponse
  10. {
  11. /// <summary>
  12. /// List of requested variables and their values.
  13. /// </summary>
  14. public List<GetVariableResultType> GetVariableResult { set; get; }
  15. }
  16. }