namespace FizzyLauncher.Models { public class AppSession { public enum AutoSaveOption { Prompt = 0, Yes, No } public bool EnableAutoPosition { get; set; } = true; public bool AlwaysOnTop { get; set; } = false; public AutoSaveOption AutoSave { get; set; } = AutoSaveOption.Prompt; public string RunCommand { get; set; } = "{0}"; } }