Mercurial > silverbladetech
view SilverlightGlimpse/SilverlightValidation/Models/UserModel.cs @ 90:d523381be45a
nuge restore added
author | stevenhollidge <stevenhollidge@hotmail.com> |
---|---|
date | Mon, 30 Apr 2012 10:48:49 +0100 |
parents | dd6bcd2535b6 |
children |
line wrap: on
line source
using System; using SilverlightValidation.Interfaces; namespace SilverlightValidation.Models { public class UserModel : IUserModel { public string Username { get; set; } public string Email { get; set; } public string Password { get; set; } public DateTime? DateOfBirth { get; set; } public string Description { get; set; } public static UserModel Create() { return new UserModel() { Username = "", Email = "", Password = "", DateOfBirth = null, Description = "" }; } public UserModel Clone() { return (UserModel) this.MemberwiseClone(); } } }