123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Text.Json.Serialization;
- namespace Dfs.WayneChina.CheryFuelController.Messages
- {
- public class UploadResult
- {
-
-
-
-
- [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; }
-
-
-
-
- [JsonPropertyName("eqp_num")]
- public string EquipmentNumber { get; set; }
- }
- }
|