mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-07-02 23:29:28 +03:00
25 lines
419 B
C#
25 lines
419 B
C#
using System.Collections.Generic;
|
|
|
|
namespace DarkUI.Docking
|
|
{
|
|
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
|
|
}
|
|
}
|