using System;
using Core.Common.Controls;
namespace Application.Ringtoets.Forms.ViewManager
{
public class DockTabClosingEventArgs : EventArgs
{
///
/// View trying to close (because a tab is being closed)
///
public IView View { get; set; }
///
/// Specifies the close action should be cancelled
///
public bool Cancel { get; set; }
}
}