OpenAuth.Net/OpenAuth.App/DynamicApiApp/Request/QueryDynamicEntityReq.cs

10 lines
173 B
C#
Raw Normal View History

2025-03-30 16:50:46 +08:00
namespace OpenAuth.App.Request
{
public class QueryDynamicEntityReq
{
public string TableName { get; set; }
public string Id { get; set; }
}
}