mirror of
https://github.com/azaion/annotations.git
synced 2026-04-23 04:36:31 +00:00
14 lines
364 B
C#
14 lines
364 B
C#
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; }
|
|
} |