bookmark-manager-r4/Models/AppOptions.cs

26 lines
627 B
C#
Raw Permalink Normal View History

2024-07-17 00:56:17 +00:00
using System.Collections.Generic;
using System.Drawing;
using bzit.bomg.Models;
namespace FizzyLauncher.Models
{
public class AppOptions
{
public bool RestorePosition { get; set; } = true;
public bool AlwaysOnTop { get; set; } = false;
public string RunCommand { get; set; } = "{0}";
2024-07-18 22:45:51 +00:00
//public bool IgnoreSSL { get; set; } = false;
2024-07-17 00:56:17 +00:00
public Point StartPosition { get; set; } = Point.Empty;
public int Width { get; set; } = 0;
public int Height { get; set; } = 0;
public List<BookmarkModel> Items { get; set; } = new List<BookmarkModel>();
}
}