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