summaryrefslogtreecommitdiff
path: root/src/MVPtoMVVM/views/ITodoItemView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/MVPtoMVVM/views/ITodoItemView.cs')
-rwxr-xr-xsrc/MVPtoMVVM/views/ITodoItemView.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/MVPtoMVVM/views/ITodoItemView.cs b/src/MVPtoMVVM/views/ITodoItemView.cs
new file mode 100755
index 0000000..7c2c48f
--- /dev/null
+++ b/src/MVPtoMVVM/views/ITodoItemView.cs
@@ -0,0 +1,10 @@
+using System;
+
+namespace MVPtoMVVM.views
+{
+ public interface ITodoItemView
+ {
+ string Description { get; set; }
+ DateTime DueDate { get; set; }
+ }
+} \ No newline at end of file