/*-------------------------------------------------------------------------
* 功能描述:ParseContext
* 作者:xulisong
* 创建时间: 2019/6/13 15:07:22
* 版本号:v1.0
* -------------------------------------------------------------------------*/
using RevitExport.Export;
namespace RevitExport.Parse
{
///
/// 解析上下文信息
///
public class ParseContext
{
///
/// 关联导出实例
///
public ExportInstance Export { get; internal set; }
}
}