Files
Gatedge.NewOrientLandMark.BOS/Gatedge.K3Cloud.Utils/Model/K3Result/ListResult.cs

24 lines
519 B
C#
Raw Normal View History

2025-11-18 17:43:12 +08:00
namespace Gatedge.K3Cloud.Utils.Model.K3Result
{
/// <summary>
/// 列表查询输出类
/// </summary>
public class ListResult
{
/// <summary>
/// 列表
/// </summary>
public List<Dictionary<string, object>> List { get; set; }
/// <summary>
/// 构造函数
/// </summary>
/// <param name="list"></param>
public ListResult(List<Dictionary<string, object>> list)
{
this.List = list;
}
}
}