lu
2025-04-26 72b1cd95bc6b8e4956e7f6b8ea1968d0db1a969b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.Collections.Generic;
 
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; }
    }
}