15 lines
No EOL
410 B
C#
15 lines
No EOL
410 B
C#
using WebsitePanel.WebDavPortal.Models.Common.EditorTemplates;
|
|
|
|
namespace WebsitePanel.WebDavPortal.Models.Account
|
|
{
|
|
public class PasswordResetFinalStepModel
|
|
{
|
|
public PasswordResetFinalStepModel()
|
|
{
|
|
PasswordEditor = new PasswordEditor();
|
|
}
|
|
|
|
public string Login { get; set; }
|
|
public PasswordEditor PasswordEditor { get; set; }
|
|
}
|
|
} |