fixes UserState values to be what they were before

This commit is contained in:
Shannon
2017-06-20 11:21:31 +10:00
parent 79e9394b62
commit 146a865882

View File

@@ -5,10 +5,10 @@
/// </summary>
public enum UserState
{
All = 0,
Active = 1,
Disabled = 2,
LockedOut = 3,
Invited = 4
All = -1,
Active = 0,
Disabled = 1,
LockedOut = 2,
Invited = 3
}
}