1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Text.Json.Serialization;
- namespace Dfs.WayneChina.CheryFuelController.Messages
- {
- public class ReceiveResult
- {
-
-
-
-
- [JsonPropertyName("serno")]
- public string SerialNo { get; set; }
-
-
-
-
- [JsonPropertyName("vin")]
- public string Vin { get; set; }
-
-
-
-
- [JsonPropertyName("status")]
- public string Status { get; set; }
-
-
-
-
- [JsonPropertyName("message")]
- public string Message { get; set; }
- }
- }
|