Mercurial > silverbladetech
comparison 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 |
comparison
equal
deleted
inserted
replaced
97:1adc1ae981ea | 98:d0c2cac12376 |
---|---|
1 using System; | 1 using System; |
2 | |
2 namespace SilverlightValidation.Interfaces | 3 namespace SilverlightValidation.Interfaces |
3 { | 4 { |
4 public interface IUserModel | 5 public interface IUserModel |
5 { | 6 { |
6 string Username { get; set; } | 7 string Username { get; set; } |
7 string Email { get; set; } | 8 string Email { get; set; } |
8 string Password { get; set; } | 9 string Password { get; set; } |
9 DateTime? DateOfBirth { get; set; } | 10 DateTime? DateOfBirth { get; set; } |
10 string Description { get; set; } | 11 string Description { get; set; } |
11 } | 12 } |
12 } | 13 } |