* 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
11 lines
258 B
C#
11 lines
258 B
C#
namespace Umbraco.Cms.Core.Notifications
|
|
{
|
|
public class AssignedMemberRolesNotification : MemberRolesNotification
|
|
{
|
|
public AssignedMemberRolesNotification(int[] memberIds, string[] roles) : base(memberIds, roles)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|