blob: f4f127b7b4bbda268ff60d6bb20752ea5fb28c76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using MVPtoMVVM.domain;
using MVPtoMVVM.views;
namespace MVPtoMVVM.presenters
{
public interface ITodoItemPresenter
{
void SetView(ITodoItemView view);
void SetItem(TodoItem item);
}
}
|