namespace Caliburn.Micro.Core { using System; /// /// EventArgs sent during deactivation. /// public class DeactivationEventArgs : EventArgs { /// /// Indicates whether the sender was closed in addition to being deactivated. /// public bool WasClosed; } }