GetLocalListVersionResponse.cs 495 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace EVCB_OCPP.Packet20.Messages
  8. {
  9. public class GetLocalListVersionResponse
  10. {
  11. /// <summary>
  12. /// This contains the current version number of the
  13. ///local authorization list in the Charging Station
  14. /// </summary>
  15. [Required]
  16. public int VersionNumber { set; get; }
  17. }
  18. }