vgquotes/Src/VideoGameQuotes.Web/Models/ChangePasswordModel.cs
tmont 99cb4defbe * login/logout
* change administration password
2011-02-17 20:55:47 +00:00

9 lines
246 B
C#

using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace VideoGameQuotes.Web.Models {
public class ChangePasswordModel {
[Required, DisplayName("New password")]
public string Password { get; set; }
}
}