fqc
lu
2025-04-15 435a9b4afbf9c62c308e8163b7438f2c72e72913
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; }
    }
}