Files
Umbraco-CMS/src/Umbraco.Web/Security/BackOfficeUserPasswordCheckerResult.cs
2018-11-22 14:05:51 +00:00

13 lines
294 B
C#

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