mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-25 15:20:10 +00:00
24 lines
511 B
C#
24 lines
511 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace MSFSPopoutPanelManager.Shared
|
|
{
|
|
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; }
|
|
|
|
[JsonIgnore]
|
|
public bool AutoStart { get; set; }
|
|
}
|
|
}
|