summaryrefslogtreecommitdiff
path: root/src/MVPtoMVVM/domain/TodoItem.cs
blob: 0170b981630bf268e18fb7211f4c19b7636ef2f4 (plain)
1
2
3
4
5
6
7
8
9
10
using System;

namespace MVPtoMVVM.domain
{
    public class TodoItem
    {
        public string Description { get; set; }
        public DateTime DueDate  { get; set; }
    }
}