1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-11-21 21:30:12 +00:00
msfs-popout-panel-manager/DomainModel/Setting/PopOutTitleBarCustomization.cs
2023-07-12 18:47:24 -04:00

15 lines
337 B
C#

namespace MSFSPopoutPanelManager.DomainModel.Setting
{
public class PopOutTitleBarCustomization
{
public PopOutTitleBarCustomization()
{
IsEnabled = false;
HexColor = "000000";
}
public bool IsEnabled { get; set; }
public string HexColor { get; set; }
}
}