blob: f6ad222ddfe4a64ef1ee739773cf4a811f2bf0b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using Gorilla.Commons.Utility;
using Gorilla.Commons.Utility.Core;
using MoMoney.DTO;
using MoMoney.Presentation.Presenters;
namespace MoMoney.Presentation.Views
{
public interface ICheckForUpdatesView : IView<ICheckForUpdatesPresenter>, ICallback<ApplicationVersion>
{
void display();
void downloaded(Percent percentage_complete);
void update_complete();
void close();
}
}
|