mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-21 21:30:12 +00:00
15 lines
337 B
C#
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; }
|
|
}
|
|
}
|