view SilverlightGlimpse/SilverlightValidation/Interfaces/IUserModel.cs @ 95:64e9903703a3

Test GUI tool license
author stevenhollidge <stevenhollidge@hotmail.com>
date Sat, 05 May 2012 11:07:41 +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; }
  }
}