using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SqlClient;
using System.Data;
namespace CommonLib
{
public class DllArgs
{
///
/// 数据连接字符串
///
public string ConnStr { get; set; }
///
/// 模块名称
///
public string ModuleName { get; set; }
///
/// 模块Id
///
public string ModuleId { get; set; }
///
/// 员工名称
///
public string EmployeeName { get; set; }
///
/// 员工Id
///
public int EmployeeId { get; set; }
///
/// 模块表示
///
public string UrlParams { get; set; }
///
/// 数据库连接
///
public SqlConnection Conn { get; set; }
///
///窗体标题
///
public string Text { get; set; }
///
/// 窗体句柄
///
public IntPtr FrmIntPtr { get; set; }
///
/// 参数设置
///
public string[] Params { get; set; }
public string Prop1 { get; set; }
public string Prop2 { get; set; }
public string Prop3 { get; set; }
public string Prop4 { get; set; }
}
}