mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
23 lines
512 B
C#
23 lines
512 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Reflection;
|
||
using System.Text;
|
||
|
||
namespace Serein.Library.Entity
|
||
{
|
||
/// <summary>
|
||
/// 节点DLL依赖类,如果一个项目中引入了多个DLL,需要放置在同一个文件夹中
|
||
/// </summary>
|
||
public class NodeLibrary
|
||
{
|
||
/// <summary>
|
||
/// 路径
|
||
/// </summary>
|
||
public string Path { get; set; }
|
||
|
||
public string Name{ get; set; }
|
||
public Assembly Assembly { get; set; }
|
||
}
|
||
|
||
}
|