using System;
using System.Collections.Generic;
namespace Gs.DevApp.ToolBox
{
///
/// 更新父窗体事件
///
public class UpdateParentEventArgs : EventArgs
{
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; }
}
}