1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2025-01-21 03:42:44 +01:00
msfs-popout-panel-manager/DomainModel/Profile/MonitorInfo.cs

25 lines
529 B
C#
Raw Normal View History

2023-07-23 07:13:23 +02:00
using MSFSPopoutPanelManager.Shared;
namespace MSFSPopoutPanelManager.DomainModel.Profile
{
public class MonitorInfo : ObservableObject
{
public MonitorInfo()
{
InitializeChildPropertyChangeBinding();
}
public string Name { get; set; }
2024-02-28 03:44:21 +01:00
public bool IsSelected { get; set; } = false;
2023-07-23 07:13:23 +02:00
2024-02-28 03:44:21 +01:00
public int X { get; set; } = 0;
2023-07-23 07:13:23 +02:00
2024-02-28 03:44:21 +01:00
public int Y { get; set; } = 0;
2023-07-23 07:13:23 +02:00
2024-02-28 03:44:21 +01:00
public int Width { get; set; } = 0;
2023-07-23 07:13:23 +02:00
2024-02-28 03:44:21 +01:00
public int Height { get; set; } = 0;
2023-07-23 07:13:23 +02:00
}
}