Files
Umbraco-CMS/src/Umbraco.Core/Security/BackOfficeUserPasswordCheckerResult.cs

13 lines
292 B
C#

namespace Umbraco.Core.Security
{
/// <summary>
/// The result returned from the IBackOfficeUserPasswordChecker
/// </summary>
public enum BackOfficeUserPasswordCheckerResult
{
ValidCredentials,
InvalidCredentials,
FallbackToDefaultChecker
}
}