using Microsoft.Practices.Prism.Events; namespace DTS.Common.Events { /// /// The SetSaveButton event /// public class SetSaveButton : CompositePresentationEvent { } /// /// The SaveButtonUsability is used by SetSaveButton event to enable/disable the Save button. /// public class SaveButtonUsability { public bool IsUsable { get; set; } } }