mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 13:50:14 +00:00
24 lines
529 B
C#
24 lines
529 B
C#
using MSFSPopoutPanelManager.Shared;
|
|
|
|
namespace MSFSPopoutPanelManager.DomainModel.Profile
|
|
{
|
|
public class MonitorInfo : ObservableObject
|
|
{
|
|
public MonitorInfo()
|
|
{
|
|
InitializeChildPropertyChangeBinding();
|
|
}
|
|
|
|
public string Name { get; set; }
|
|
|
|
public bool IsSelected { get; set; } = false;
|
|
|
|
public int X { get; set; } = 0;
|
|
|
|
public int Y { get; set; } = 0;
|
|
|
|
public int Width { get; set; } = 0;
|
|
|
|
public int Height { get; set; } = 0;
|
|
}
|
|
}
|