tangxu
2024-11-25 0a2c59670b82d61d3fa79f51a54e82e7bd0134c4
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
#region Imports
 
using System.Collections.Generic;
 
#endregion
 
namespace DPumpHydr.WinFrmUI.RLT.Docking.Crown
{
    #region DockPanelStateDocking
 
    public class DockPanelState
    {
        #region Property Region
 
        public List<DockRegionState> Regions { get; set; }
 
        #endregion
 
        #region Constructor Region
 
        public DockPanelState()
        {
            Regions = new List<DockRegionState>();
        }
 
        #endregion
    }
 
    #endregion
}