Mercurial > silverbladetech
diff delete me/SilverlightValidation/Models/UserModel.cs @ 59:3591c26bd63e
MVVMLight added
author | Steven Hollidge <stevenhollidge@hotmail.com> |
---|---|
date | Sat, 21 Apr 2012 19:20:28 +0100 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/delete me/SilverlightValidation/Models/UserModel.cs Sat Apr 21 19:20:28 2012 +0100 @@ -0,0 +1,25 @@ +using System; +using System.ComponentModel; +using SilverlightValidation.Interfaces; + +namespace SilverlightValidation.Models +{ + public class UserModel : IUserModel, ICloneable<UserModel> + { + 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(); + } + } +}