* Gather all notifications in Umbraco.Cms.Core.Notifications * Rename notifications to match convention * Move and rename missed notifications * Move the three remaining public notification into Umbraco.Cms.Core.Notifications
10 lines
296 B
C#
10 lines
296 B
C#
namespace Umbraco.Cms.Core.Notifications
|
|
{
|
|
public class UserUnlockedNotification : UserNotification
|
|
{
|
|
public UserUnlockedNotification(string ipAddress, string affectedUserId, string performingUserId) : base(ipAddress, affectedUserId, performingUserId)
|
|
{
|
|
}
|
|
}
|
|
}
|