Sic08/SicUI/ShowCloseMonitorWinEvent.cs

14 lines
225 B
C#

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