- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace EVCB_OCPP.WSServer.Dto
- {
- internal class TransactionSoCDto
- {
- public int TransactionId { set; get; }
- public int MinSoC { set; get; }
- public int MaxSoC { set; get; }
- }
- }
|