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

23 lines
512 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.
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; }
}
}