2021-05-11 14:33:49 +02:00
|
|
|
namespace Umbraco.Cms.Core.Notifications
|
2021-03-09 07:52:32 +01:00
|
|
|
{
|
|
|
|
|
public abstract class MemberRolesNotification : INotification
|
|
|
|
|
{
|
|
|
|
|
protected MemberRolesNotification(int[] memberIds, string[] roles)
|
|
|
|
|
{
|
|
|
|
|
MemberIds = memberIds;
|
|
|
|
|
Roles = roles;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int[] MemberIds { get; }
|
|
|
|
|
|
|
|
|
|
public string[] Roles { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|