using Newtonsoft.Json;
using System.Text.Json.Serialization;
namespace WcsMain.ApiServe.Vo.Board;
///
/// 键值对数据
///
public class NameValueData
{
[JsonPropertyName("name")]
public string? Name { get; set; }
[JsonPropertyName("value")]
public T? Value { get; set; }
}