TCCStationInfoDto.cs 375 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace EVCB_OCPP.WSServer.Dto
  7. {
  8. public class TCCStationInfoDto
  9. {
  10. public string Name { set; get; }
  11. public decimal Lat { set; get; }
  12. public decimal Long { set; get; }
  13. public string ZipCode { set; get; }
  14. }
  15. }