comparison SilverlightValidation/SilverlightValidation.PL/Interfaces/IUserModel.cs @ 96:188f8b366e87

Unit test project correctly setup as normal class library DLL.
author stevenhollidge <stevenhollidge@hotmail.com>
date Sat, 05 May 2012 13:29:56 +0100
parents SilverlightValidation/SilverlightValidation/Interfaces/IUserModel.cs@241e2f22ed3c
children d0c2cac12376
comparison
equal deleted inserted replaced
95:64e9903703a3 96:188f8b366e87
1 using System;
2 namespace SilverlightValidation.Interfaces
3 {
4 public interface IUserModel
5 {
6 string Username { get; set; }
7 string Email { get; set; }
8 string Password { get; set; }
9 DateTime? DateOfBirth { get; set; }
10 string Description { get; set; }
11 }
12 }