This repository has been archived on 2024-08-06. You can view files and clone it, but cannot push or open issues or pull requests.
linear-app-launcher/Models/AppOptions.cs
Ray 2e3b2998e7 Fixed file session manager
Added has-changed detection flag
Fixed dialog result null-value
Changed session manager event names
2024-07-05 22:43:19 +01:00

27 lines
734 B
C#

using System.Collections.Generic;
using System.Drawing;
namespace FizzyLauncher.Models
{
public class AppOptions
{
public int TilesPerRow { get; set; } = 8;
public bool ShowBigIcons { get; set; } = true;
public RyzStudio.Windows.ThemedForms.ButtonTextBox.ThKeyCodeTextBox.Results ShowToggleHotkey { get; set; } = null;
public bool HideOnClose { get; set; } = true;
public bool HideOnExecute { get; set; } = true;
public bool AlwaysOnTop { get; set; } = false;
public List<TileGroupModel> Groups { get; set; } = new List<TileGroupModel>();
public Point StartPosition { get; set; } = Point.Empty;
public int Height { get; set; } = 280;
}
}