diff SilverlightValidation/SilverlightValidation.PL/Interfaces/IUserModel.cs @ 98:d0c2cac12376

Latest version
author stevenhollidge <stevenhollidge@hotmail.com>
date Sat, 05 May 2012 22:53:40 +0100
parents 188f8b366e87
children
line wrap: on
line diff
--- a/SilverlightValidation/SilverlightValidation.PL/Interfaces/IUserModel.cs	Sat May 05 16:39:00 2012 +0100
+++ b/SilverlightValidation/SilverlightValidation.PL/Interfaces/IUserModel.cs	Sat May 05 22:53:40 2012 +0100
@@ -1,12 +1,13 @@
 using System;
+
 namespace SilverlightValidation.Interfaces
 {
-  public interface IUserModel
-  {
-    string Username { get; set; }
-    string Email { get; set; }
-    string Password { get; set; }
-    DateTime? DateOfBirth { get; set; }
-    string Description { get; set; }
-  }
+    public interface IUserModel
+    {
+        string Username { get; set; }
+        string Email { get; set; }
+        string Password { get; set; }
+        DateTime? DateOfBirth { get; set; }
+        string Description { get; set; }
+    }
 }