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

10 lines
179 B
C#
Raw Normal View History

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