Infrastructure/OpenAuth.App/BaseApp/DbTable/Request/DbTableReq.cs

16 lines
314 B
C#
Raw Normal View History

2024-11-13 09:19:06 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.Request
{
2025-04-14 10:57:27 +08:00
public class UpdateTableReq
2024-11-13 09:19:06 +08:00
{
public string TableName { get; set; }
2025-04-14 10:57:27 +08:00
public List<Dictionary<string,object>> list { get; set; }
2024-11-13 09:19:06 +08:00
}
}