14 lines
267 B
C#
14 lines
267 B
C#
namespace MECF.Framework.UI.Client.CenterViews.Modules.PM
|
|
{
|
|
public class ShowCloseMonitorWinEvent
|
|
{
|
|
public ShowCloseMonitorWinEvent(bool isShow)
|
|
{
|
|
IsShow = isShow;
|
|
}
|
|
|
|
public bool IsShow { get; }
|
|
|
|
}
|
|
}
|