12345678910111213141516171819202122232425262728293031323334353637383940 |
- namespace OCPPServer
- {
-
-
-
- public class NeedConfirmPacket
- {
-
-
-
- public int Id { get; set; }
- public string MachineCustomId { get; set; }
-
-
-
- public int SentTimes { get; set; }
-
-
-
- public int SentInterval { get; set; }
-
-
-
- public string SentMessage { get; set; }
-
-
-
- public string SentUniqueId { get; set; }
-
-
-
- public string SentAction { get; set; }
- }
- }
|