將寫死改成活讀

This commit is contained in:
DangHome
2023-07-03 01:51:09 +08:00
parent a48d7b8d56
commit a8fd8f3f46
27 changed files with 703 additions and 546 deletions

View File

@@ -0,0 +1,17 @@
using System.Text.Json.Serialization;
public class SMonitorModel
{
[JsonPropertyName("VCP Code")]
public string? VCPCode { get; set; }
[JsonPropertyName("VCP Code Name")]
public string? VCPCodeName { get; set; }
[JsonPropertyName("Read-Write")]
public string? ReadWrite { get; set; }
[JsonPropertyName("Current Value")]
public string? CurrentValue { get; set; }
[JsonPropertyName("Maximum Value")]
public string? MaximumValue { get; set; }
[JsonPropertyName("Possible Values")]
public string? PossibleValues { get; set; }
}