1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Teknik/Utilities/Utilities/AccountStatus.cs
Uncled1023 51b4260f3c - Added account status of either active or banned.
- Cleaned up admin pages.
- Added Type and Status to user's profile page.
- Banned users cannot login, or associate API calls with their account
2018-01-09 22:06:43 -08:00

9 lines
112 B
C#

namespace Teknik.Utilities
{
public enum AccountStatus
{
Active = 0,
Banned = 1
}
}