mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-02 15:50:47 +08:00
21 lines
553 B
C#
21 lines
553 B
C#
using Serein.Library;
|
|
using System.Reflection;
|
|
|
|
namespace Serein.NodeFlow.Model.Library
|
|
{
|
|
public class LibraryMdDd
|
|
{
|
|
public MethodDetails MethodDetails { get; }
|
|
public MethodInfo MethodInfo { get; }
|
|
public DelegateDetails DelegateDetails { get; }
|
|
|
|
public LibraryMdDd(MethodInfo methodInfo, MethodDetails methodDetails, DelegateDetails delegateDetails)
|
|
{
|
|
MethodDetails = methodDetails;
|
|
MethodInfo = methodInfo;
|
|
DelegateDetails = delegateDetails;
|
|
}
|
|
}
|
|
|
|
}
|