namespace Ryujinx.Ui.Common.Configuration.Ui
{
    public struct WindowStartup
    {
        public int WindowSizeWidth { get; set; }
        public int WindowSizeHeight { get; set; }
        public int WindowPositionX { get; set; }
        public int WindowPositionY { get; set; }
        public bool WindowMaximized { get; set; }
    }
}