Mercurial > silverbladetech
annotate SilverlightValidation/SilverlightValidation.PL/Interfaces/IUserModel.cs @ 121:8f94475d3146 tip
final code
author | stevenh7776 |
---|---|
date | Thu, 31 May 2012 15:35:26 +0100 |
parents | d0c2cac12376 |
children |
rev | line source |
---|---|
58 | 1 using System; |
98 | 2 |
58 | 3 namespace SilverlightValidation.Interfaces |
4 { | |
98 | 5 public interface IUserModel |
6 { | |
7 string Username { get; set; } | |
8 string Email { get; set; } | |
9 string Password { get; set; } | |
10 DateTime? DateOfBirth { get; set; } | |
11 string Description { get; set; } | |
12 } | |
58 | 13 } |