2026-01-19 16:54:31 -06:00
|
|
|
using LANCommander.Launcher.Enums;
|
|
|
|
|
|
|
|
|
|
namespace LANCommander.Launcher.Models;
|
|
|
|
|
|
|
|
|
|
public class WindowOptions
|
|
|
|
|
{
|
|
|
|
|
public Type? RootComponentType { get; set; }
|
|
|
|
|
public string? Title { get; set; }
|
|
|
|
|
public WindowType Type { get; set; }
|
2026-03-15 17:06:37 -05:00
|
|
|
public bool CustomWindow { get; set; } = true;
|
|
|
|
|
public int Width { get; set; } = 1280;
|
|
|
|
|
public int Height { get; set; } = 960;
|
2026-01-19 16:54:31 -06:00
|
|
|
}
|