StableVersion4.3/HL_FristAidPlatform_DTO/DictionaryModel.cs

21 lines
404 B
C#
Raw Normal View History

2024-03-11 09:47:34 +08:00
using System.Collections.Generic;
namespace HL_FristAidPlatform_DTO
{
/// <summary>
/// 表格数据,支持分页
/// </summary>
public class DictionaryModel
{
/// <summary>
/// 健
/// </summary>
public string name { get; set; }
/// <summary>
/// 值
/// </summary>
public string valueText { get; set; }
}
}