using System.Collections.Generic; using System.Drawing; namespace AppLauncher.Models { public class LauncherSession { public int DefaultHeight { get; set; } = 280; public int HotKeyX { get; set; } = -1; public int HotKeyY { get; set; } = -1; public bool AlwaysOnTop { get; set; } = false; public List Groups { get; set; } = new List(); } }