view SilverlightGlimpse/SilverlightValidation/Interfaces/IUserModel.cs @ 100:9b6855dc165e

Updated System.Windows into Libs
author stevenhollidge <stevenhollidge@hotmail.com>
date Sat, 05 May 2012 23:04:16 +0100
parents a0bcd783e612
children
line wrap: on
line source

using System;
namespace SilverlightValidation.Interfaces
{
  public interface IUserModel
  {
    string Username { get; set; }
    string Email { get; set; }
    string Password { get; set; }
    DateTime? DateOfBirth { get; set; }
    string Description { get; set; }
  }
}