Sic03/SicUI/ShowCloseMonitorWinEvent.cs

19 lines
333 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SicUI
{
public class ShowCloseMonitorWinEvent
{
public ShowCloseMonitorWinEvent(bool isShow)
{
IsShow = isShow;
}
public bool IsShow { get; }
}
}