namespace HStation.WinFrmUI
{
///
/// 控件程序集信息
///
public class ControlAssemblyInfo
{
public ControlAssemblyInfo()
{ }
public ControlAssemblyInfo(string dllFileName, string controlFullName)
{
this.DllFileName = dllFileName;
this.ControlFullName = controlFullName;
}
public ControlAssemblyInfo(ControlAssemblyInfo rhs)
{
this.DllFileName = rhs.DllFileName;
this.ControlFullName = rhs.ControlFullName;
}
///
/// DLL 文件名称
///
public string DllFileName { get; set; }
///
/// 控件全名称
///
public string ControlFullName { get; set; }
}
}