15 lines
296 B
C#
15 lines
296 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Umbraco.Cms.Core.Notifications
|
|||
|
|
{
|
|||
|
|
public class UserTwoFactorRequestedNotification : INotification
|
|||
|
|
{
|
|||
|
|
public UserTwoFactorRequestedNotification(Guid userKey)
|
|||
|
|
{
|
|||
|
|
UserKey = userKey;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public Guid UserKey { get; }
|
|||
|
|
}
|
|||
|
|
}
|