mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
47 lines
1012 B
C#
47 lines
1012 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace Serein.Library
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 方法描述信息
|
|||
|
|
/// </summary>
|
|||
|
|
public class MethodDetailsInfo
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 属于哪个DLL文件
|
|||
|
|
/// </summary>
|
|||
|
|
public string LibraryName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 方法名称
|
|||
|
|
/// </summary>
|
|||
|
|
public string MethodName { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 节点类型
|
|||
|
|
/// </summary>
|
|||
|
|
public string NodeType { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 方法说明
|
|||
|
|
/// </summary>
|
|||
|
|
public string MethodTips { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 参数内容
|
|||
|
|
/// </summary>
|
|||
|
|
|
|||
|
|
public ParameterDetailsInfo[] ParameterDetailsInfos { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 出参类型
|
|||
|
|
/// </summary>
|
|||
|
|
public string ReturnTypeFullName { get; set; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|