18 lines
323 B
C#
18 lines
323 B
C#
using Newtonsoft.Json;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace WcsMain.ApiServe.Vo.Board;
|
|
|
|
/// <summary>
|
|
/// 键值对数据
|
|
/// </summary>
|
|
public class NameValueData<T>
|
|
{
|
|
[JsonPropertyName("name")]
|
|
public string? Name { get; set; }
|
|
|
|
[JsonPropertyName("value")]
|
|
public T? Value { get; set; }
|
|
|
|
}
|