Files
Umbraco-CMS/src/Umbraco.Core/Notifications/UserForgotPasswordChangedNotification.cs

10 lines
322 B
C#
Raw Normal View History

namespace Umbraco.Cms.Core.Notifications
{
public class UserForgotPasswordChangedNotification : UserNotification
{
public UserForgotPasswordChangedNotification(string ipAddress, string affectedUserId, string performingUserId) : base(ipAddress, affectedUserId, performingUserId)
{
}
}
}