#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
|
}
|