10 lines
No EOL
281 B
C#
10 lines
No EOL
281 B
C#
namespace LANCommander.Launcher.Settings;
|
|
|
|
public class WindowSettings
|
|
{
|
|
public bool Maximized { get; set; } = false;
|
|
public int Width { get; set; } = 1024;
|
|
public int Height { get; set; } = 768;
|
|
public int X { get; set; } = 0;
|
|
public int Y { get; set; } = 0;
|
|
} |