Initial Commit ...

This commit is contained in:
2024-01-25 04:42:47 +03:30
commit 844b4c47ad
50 changed files with 2615 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
namespace xIdentityModels.Constants {
public enum XAction {
Authentication,
Invite,
Registration,
RequestMobileVerificationCode,
ConfirmMobileNumber,
RequestEmailVerificationCode,
ConfirmEmailAddress,
AddAccountInfo,
AttachProfileImage,
RequestResetPassword,
ProfileAction,
Finish,
}
}
+12
View File
@@ -0,0 +1,12 @@
namespace xIdentityModels.Constants {
/// <summary>
/// Represent State of Friendship between to Users
/// </summary>
public enum XFriendshipState {
None,
Pending,
Accepted,
Rejected,
Blocked,
}
}
+9
View File
@@ -0,0 +1,9 @@
namespace xIdentityModels.Constants {
/// <summary>
/// Determines Available Genders
/// </summary>
public enum XGender {
Male,
Female
}
}
+9
View File
@@ -0,0 +1,9 @@
namespace xIdentityModels.Constants {
public enum XUserSelectBy {
NotSpecified,
ID,
Username,
Email,
MobileNumber
}
}
+3
View File
@@ -0,0 +1,3 @@
namespace xIdentityModels.Constants {
public class xIdentityModelsConstants { }
}