mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-07-03 15:49:26 +03:00
23 lines
383 B
C#
23 lines
383 B
C#
using System.Collections.Generic;
|
|
|
|
namespace DarkUI.Docking
|
|
{
|
|
public class DockPanelState
|
|
{
|
|
#region Property Region
|
|
|
|
public List<DockRegionState> Regions { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region Constructor Region
|
|
|
|
public DockPanelState()
|
|
{
|
|
Regions = new List<DockRegionState>();
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|