Files
serein-flow/Library/Entity/NodeLibrary.cs

22 lines
472 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Reflection;
using System.Text;
namespace Serein.Library.Entity
{
2024-10-11 19:31:34 +08:00
/// <summary>
/// 节点DLL依赖类如果一个项目中引入了多个DLL需要放置在同一个文件夹中
/// </summary>
public class NodeLibrary
{
2024-10-11 19:31:34 +08:00
/// <summary>
/// 路径
/// </summary>
public string Path { get; set; }
2024-10-11 19:31:34 +08:00
public Assembly Assembly { get; set; }
}
}