Initial Commit ...
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
namespace xIdentityModels.Constants {
|
||||
public enum XAction {
|
||||
Authentication,
|
||||
Invite,
|
||||
Registration,
|
||||
RequestMobileVerificationCode,
|
||||
ConfirmMobileNumber,
|
||||
RequestEmailVerificationCode,
|
||||
ConfirmEmailAddress,
|
||||
AddAccountInfo,
|
||||
AttachProfileImage,
|
||||
RequestResetPassword,
|
||||
ProfileAction,
|
||||
Finish,
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
namespace xIdentityModels.Constants {
|
||||
/// <summary>
|
||||
/// Represent State of Friendship between to Users
|
||||
/// </summary>
|
||||
public enum XFriendshipState {
|
||||
None,
|
||||
Pending,
|
||||
Accepted,
|
||||
Rejected,
|
||||
Blocked,
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace xIdentityModels.Constants {
|
||||
/// <summary>
|
||||
/// Determines Available Genders
|
||||
/// </summary>
|
||||
public enum XGender {
|
||||
Male,
|
||||
Female
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace xIdentityModels.Constants {
|
||||
public enum XUserSelectBy {
|
||||
NotSpecified,
|
||||
ID,
|
||||
Username,
|
||||
Email,
|
||||
MobileNumber
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
namespace xIdentityModels.Constants {
|
||||
public class xIdentityModelsConstants { }
|
||||
}
|
||||
Reference in New Issue
Block a user