1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-11-25 15:20:10 +00:00
msfs-popout-panel-manager/Shared/AppSettingData.cs

25 lines
511 B
C#
Raw Normal View History

2022-01-18 14:58:11 +00:00
using Newtonsoft.Json;
namespace MSFSPopoutPanelManager.Shared
2021-12-14 05:40:07 +00:00
{
public class AppSettingData
{
public AppSettingData()
{
// Set defaults
MinimizeToTray = false;
AlwaysOnTop = true;
UseAutoPanning = true;
}
public bool MinimizeToTray { get; set; }
public bool AlwaysOnTop { get; set; }
public bool UseAutoPanning { get; set; }
2022-01-18 14:58:11 +00:00
[JsonIgnore]
public bool AutoStart { get; set; }
2021-12-14 05:40:07 +00:00
}
}