using System;
using System.Collections.Generic;
namespace Gs.DevApp.ToolBox
{
///
/// 更新父窗体事件
///
public class UpdateParentEventArgs : EventArgs
{
///
/// 单个string数据
///
public string Data { get; set; }
///
/// 过滤实体
///
public List FilterList { get; set; }
///
/// 字符串列表
///
public List StringList { get; set; }
///
/// 动态对象列表
///
public List DynamicList { get; set; }
///
/// 单个字符串
///
public string StringSingle { get; set; }
}
}