summaryrefslogtreecommitdiff
path: root/src/MVPtoMVVM/domain/TodoItem.cs
diff options
context:
space:
mode:
authorJason Lepp <jlepp@arcresources.com>2010-10-14 16:44:20 -0600
committerJason Lepp <jlepp@arcresources.com>2010-10-14 16:44:20 -0600
commit089aeadfcd4819c051e56c26e89ab453851d1216 (patch)
tree57324249efd26af4efc32de755718a96869e16a4 /src/MVPtoMVVM/domain/TodoItem.cs
parent6ee5411f93f7534691492963a9b9c478575edb1e (diff)
Begin adding repos, domain and StructureMap
Diffstat (limited to 'src/MVPtoMVVM/domain/TodoItem.cs')
-rwxr-xr-xsrc/MVPtoMVVM/domain/TodoItem.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/MVPtoMVVM/domain/TodoItem.cs b/src/MVPtoMVVM/domain/TodoItem.cs
new file mode 100755
index 0000000..0170b98
--- /dev/null
+++ b/src/MVPtoMVVM/domain/TodoItem.cs
@@ -0,0 +1,10 @@
+using System;
+
+namespace MVPtoMVVM.domain
+{
+ public class TodoItem
+ {
+ public string Description { get; set; }
+ public DateTime DueDate { get; set; }
+ }
+} \ No newline at end of file