49 lines
889 B
C#
49 lines
889 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.SharedLauncher
|
|
{
|
|
public enum UserValidationResult
|
|
{
|
|
UserUnknown = 0,
|
|
UserValid = 1,
|
|
UnkownError = 2,
|
|
TenantUnknown = 3,
|
|
IncorrectPin = 4,
|
|
PinExpired = 5,
|
|
PinAlreadyUsed = 6,
|
|
PasswordExpired = 7
|
|
}
|
|
|
|
public enum LauncherPasswortSecurityStrength
|
|
{
|
|
SehrSchwach,
|
|
Schwach,
|
|
Mittelmass,
|
|
Stark,
|
|
SehrStark
|
|
}
|
|
|
|
public enum FileToDo
|
|
{
|
|
Add,
|
|
Remove,
|
|
Update,
|
|
Nuthing
|
|
}
|
|
|
|
public enum PasswordValidationResult
|
|
{
|
|
Succesful,
|
|
NotCorrect,
|
|
NotLongEnough,
|
|
NotSpecialEnough,
|
|
NotStrongEnough,
|
|
ImFunnyAndUsingBewoAsPasswordSmile,
|
|
AreTheSame
|
|
}
|
|
}
|