You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
310 B
C#
20 lines
310 B
C#
2 weeks ago
|
public enum Gender
|
||
|
{
|
||
|
Male = 0,
|
||
|
Female = 1,
|
||
|
}//enum end
|
||
|
|
||
|
public enum CreateUserStatus
|
||
|
{
|
||
|
EmptyUserName = 0,
|
||
|
Success = 1,
|
||
|
Exists = 2,
|
||
|
RequestFailed = 3,
|
||
|
}//enum end
|
||
|
|
||
|
public enum GetUserStatus
|
||
|
{
|
||
|
Exists = 0,
|
||
|
NotExists = 1,
|
||
|
RequestFailed = 2,
|
||
|
}//enum end
|