將寫死改成活讀
This commit is contained in:
17
CMMModel/Model/SMonitorModel.cs
Normal file
17
CMMModel/Model/SMonitorModel.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user