comparison SilverlightGlimpse/SilverlightValidation/Models/UserModel.cs @ 78:dd6bcd2535b6

Working version
author Steven Hollidge <stevenhollidge@hotmail.com>
date Mon, 23 Apr 2012 22:43:53 +0100
parents a0bcd783e612
children
comparison
equal deleted inserted replaced
77:86ed4919b126 78:dd6bcd2535b6
1 using System; 1 using System;
2 using System.ComponentModel;
3 using SilverlightValidation.Interfaces; 2 using SilverlightValidation.Interfaces;
4 3
5 namespace SilverlightValidation.Models 4 namespace SilverlightValidation.Models
6 { 5 {
7 public class UserModel : IUserModel, ICloneable<UserModel> 6 public class UserModel : IUserModel
8 { 7 {
9 public string Username { get; set; } 8 public string Username { get; set; }
10 public string Email { get; set; } 9 public string Email { get; set; }
11 public string Password { get; set; } 10 public string Password { get; set; }
12 public DateTime? DateOfBirth { get; set; } 11 public DateTime? DateOfBirth { get; set; }