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

22 lines
519 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace OpenAuth.App.Request
{
public class InvokeDynamicReq
{
/// <summary>
/// 服务名称,如OpenAuth.App.MoudleApp
/// </summary>
public string ServiceName { get; set; }
/// <summary>
/// 方法名称,如Add
/// </summary>
public string MethodName { get; set; }
/// <summary>
/// 参数,如:{ "Id": 1, "Name": "test" }
/// </summary>
public string Parameters { get; set; }
}
}