Sic10/SicUI/ShowCloseMonitorWinEvent.cs

14 lines
225 B
C#
Raw Normal View History

2023-05-10 10:26:01 +08:00
namespace SicUI
{
public class ShowCloseMonitorWinEvent
{
public ShowCloseMonitorWinEvent(bool isShow)
{
IsShow = isShow;
}
public bool IsShow { get; }
}
}