User password change dashboard

This commit is contained in:
perploug
2013-09-16 14:50:56 +02:00
parent b6d00cca63
commit fdfb019ea7
8 changed files with 108 additions and 29 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Umbraco.Web.Models.ContentEditing
{
public class UserPasswordChange
{
public string OldPassword { get; set; }
public string NewPassword { get; set; }
}
}