You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
Imports System.ComponentModel.DataAnnotations
|
|
|
|
Public Class ResetPasswordModel
|
|
|
|
<Required(ErrorMessage:="Bitte eingeben")>
|
|
<Display(Name:="Benutzername")>
|
|
Public Property UserNameReset() As String
|
|
|
|
Public Property MailAddress As String
|
|
|
|
Public Property NewPassword() As String
|
|
|
|
End Class
|
|
|