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

15 lines
296 B
C#
Raw Normal View History

using System;
namespace Umbraco.Cms.Core.Notifications
{
public class UserTwoFactorRequestedNotification : INotification
{
public UserTwoFactorRequestedNotification(Guid userKey)
{
UserKey = userKey;
}
public Guid UserKey { get; }
}
}