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; } } }