using System.Collections.Generic; namespace DarkUI.Docking { 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 } }