summaryrefslogtreecommitdiff
path: root/src/MVPtoMVVM/views/ITodoItemView.cs
blob: 79d21740c23971beb227c3f5cb3dffde9a62f2c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace MVPtoMVVM.views
{
    public interface ITodoItemView
    {
        string Description { get; set; }
        DateTime DueDate { get; set; }
        bool SaveButtonEnabled { get; set; }
    }
}