#region Imports using System.Collections.Generic; #endregion namespace DPumpHydr.WinFrmUI.RLT.Docking.Crown { #region DockGroupStateDocking public class DockGroupState { #region Property Region public List Contents { get; set; } public string VisibleContent { get; set; } #endregion #region Constructor Region public DockGroupState() { Contents = new List(); } #endregion } #endregion }