main
1using MoMoney.Presentation.Model.Menu.File;
2
3namespace momoney.presentation.views
4{
5    public interface ISaveChangesView : IView<ISaveChangesPresenter>
6    {
7        void prompt_user_to_save();
8    }
9}