Files
Umbraco-CMS/src/Umbraco.Web.Common/Security/UserForgotPasswordChangedNotification.cs

10 lines
323 B
C#
Raw Normal View History

namespace Umbraco.Cms.Web.Common.Security
{
public class UserForgotPasswordChangedNotification : UserNotification
{
public UserForgotPasswordChangedNotification(string ipAddress, string affectedUserId, string performingUserId) : base(ipAddress, affectedUserId, performingUserId)
{
}
}
}