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}";

        public bool IgnoreSSL { get; set; } = false;

        public bool ShowToolbar { get; set; } = false;

    }
}