vgquotes/Src/VideoGameQuotes.Web/Models/ChangePasswordModel.cs

9 lines
246 B
C#
Raw Normal View History

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