using System.Windows; namespace Azaion.Common.DTO.Config; public class WindowConfig { public Size WindowSize { get; set; } public Point WindowLocation { get; set; } public bool FullScreen { get; set; } public double LeftPanelWidth { get; set; } public double RightPanelWidth { get; set; } public bool ShowHelpOnStart { get; set; } }