using System;
using System.Collections.Generic;
using System.Reflection;
using System.Text;
namespace Serein.Library
{
///
/// 节点DLL依赖类,如果一个项目中引入了多个DLL,需要放置在同一个文件夹中
///
public class NodeLibrary
{
///
/// 文件名
///
public string FileName { get; set; }
///
/// 路径
///
public string FilePath { get; set; }
///
/// 依赖类的名称
///
public string FullName{ get; set; }
///
/// 对应的程序集
///
public Assembly Assembly { get; set; }
}
}