1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-10-16 14:10:45 +00:00
msfs-popout-panel-manager/DomainModel/Profile/FloatingPanel.cs

16 lines
349 B
C#
Raw Normal View History

2024-02-29 06:11:56 +00:00
using MSFSPopoutPanelManager.Shared;
2024-03-01 11:28:09 +00:00
using Newtonsoft.Json;
2024-02-29 06:11:56 +00:00
namespace MSFSPopoutPanelManager.DomainModel.Profile
{
public class FloatingPanel : ObservableObject
{
public bool IsEnabled { get; set; }
2024-03-01 11:28:09 +00:00
public string Binding { get; set; }
[JsonIgnore]
public bool IsDetectingKeystroke { get; set; }
2024-02-29 06:11:56 +00:00
}
}