tangxu
2024-12-24 91105b77c916d06dd30380e20594e29f85eae3da
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
#region Imports
 
using System.Collections.Generic;
 
#endregion
 
namespace DPumpHydr.WinFrmUI.RLT.Docking.Crown
{
    #region DockGroupStateDocking
 
    public class DockGroupState
    {
        #region Property Region
 
        public List<string> Contents { get; set; }
 
        public string VisibleContent { get; set; }
 
        #endregion
 
        #region Constructor Region
 
        public DockGroupState()
        {
            Contents = new List<string>();
        }
 
        #endregion
    }
 
    #endregion
}