Sic04/SicUI/ShowMonitorWinEvent.cs

13 lines
216 B
C#

namespace SicUI
{
public class ShowCloseMonitorWinEvent
{
public ShowCloseMonitorWinEvent(bool isShow)
{
IsShow = isShow;
}
public bool IsShow { get; }
}
}