StationInfoDto.cs 463 B

12345678910111213141516171819202122232425
  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 StationInfoDto
  9. {
  10. public int Id { set; get; }
  11. /// <summary>
  12. /// LoadingBalance Mode
  13. /// 0:None 1: Average
  14. /// 2:FCFS 3:Manual
  15. /// </summary>
  16. public int LBMode { set; get; }
  17. public int Availability { set; get; }
  18. }
  19. }