23 lines
508 B
C#
Raw Normal View History

2025-07-31 18:51:24 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace YunDa.Server.ISMSTcp.Models
{
// YC数据类
public class YCData
{
[JsonPropertyName("YC_ID")]
public string YC_ID { get; set; } = string.Empty;
[JsonPropertyName("V")]
public decimal V { get; set; }
[JsonPropertyName("T")]
public string T { get; set; } = string.Empty;
}
}