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