mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
9 lines
112 B
C#
9 lines
112 B
C#
|
namespace Teknik.Utilities
|
||
|
{
|
||
|
public enum AccountStatus
|
||
|
{
|
||
|
Active = 0,
|
||
|
Banned = 1
|
||
|
}
|
||
|
}
|