bukkubuddy-bookmark-manager/Models/AppOptions.cs

28 lines
704 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;
2024-12-31 17:47:25 +00:00
public List<string> Directories { get; set; } = new List<string>();
2024-07-17 00:56:17 +00:00
public List<BookmarkModel> Items { get; set; } = new List<BookmarkModel>();
}
}