aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.Web
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-05-11 03:37:33 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-05-11 03:37:33 +0300
commitd4adb3a3faa36b4500c17e661e09ec2af338b353 (patch)
treee31967e0e9b9dd198c8bf646c1c3c22599badada /Software/Visual_Studio/FSE/Tango.FSE.Web
parent9ead141002c63c1a44d7851fa4a4a1902c0bfe89 (diff)
downloadTango-d4adb3a3faa36b4500c17e661e09ec2af338b353.tar.gz
Tango-d4adb3a3faa36b4500c17e661e09ec2af338b353.zip
User invitation via Email !
Diffstat (limited to 'Software/Visual_Studio/FSE/Tango.FSE.Web')
-rw-r--r--Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/ForgotPasswordRequest.cs14
-rw-r--r--Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/ForgotPasswordResponse.cs14
-rw-r--r--Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/UserInvitationEmailRequest.cs17
-rw-r--r--Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/UserInvitationEmailResponse.cs14
-rw-r--r--Software/Visual_Studio/FSE/Tango.FSE.Web/Tango.FSE.Web.csproj4
5 files changed, 63 insertions, 0 deletions
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/ForgotPasswordRequest.cs b/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/ForgotPasswordRequest.cs
new file mode 100644
index 000000000..90ffbf904
--- /dev/null
+++ b/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/ForgotPasswordRequest.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.Transport.Web;
+
+namespace Tango.FSE.Web.Messages
+{
+ public class ForgotPasswordRequest : WebRequestMessage
+ {
+ public String Email { get; set; }
+ }
+}
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/ForgotPasswordResponse.cs b/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/ForgotPasswordResponse.cs
new file mode 100644
index 000000000..bc4d94e64
--- /dev/null
+++ b/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/ForgotPasswordResponse.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.Transport.Web;
+
+namespace Tango.FSE.Web.Messages
+{
+ public class ForgotPasswordResponse : WebResponseMessage
+ {
+
+ }
+}
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/UserInvitationEmailRequest.cs b/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/UserInvitationEmailRequest.cs
new file mode 100644
index 000000000..b809a598d
--- /dev/null
+++ b/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/UserInvitationEmailRequest.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.Transport.Web;
+
+namespace Tango.FSE.Web.Messages
+{
+ public class UserInvitationEmailRequest : WebRequestMessage
+ {
+ public String Email { get; set; }
+ public String FullName { get; set; }
+ public String Password { get; set; }
+ public String MachineServiceAddress { get; set; }
+ }
+}
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/UserInvitationEmailResponse.cs b/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/UserInvitationEmailResponse.cs
new file mode 100644
index 000000000..36163851a
--- /dev/null
+++ b/Software/Visual_Studio/FSE/Tango.FSE.Web/Messages/UserInvitationEmailResponse.cs
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.Transport.Web;
+
+namespace Tango.FSE.Web.Messages
+{
+ public class UserInvitationEmailResponse : WebResponseMessage
+ {
+
+ }
+}
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Web/Tango.FSE.Web.csproj b/Software/Visual_Studio/FSE/Tango.FSE.Web/Tango.FSE.Web.csproj
index 19b8330cb..4c9f769c4 100644
--- a/Software/Visual_Studio/FSE/Tango.FSE.Web/Tango.FSE.Web.csproj
+++ b/Software/Visual_Studio/FSE/Tango.FSE.Web/Tango.FSE.Web.csproj
@@ -47,10 +47,14 @@
<Compile Include="Messages\CheckForUpdatesResponse.cs" />
<Compile Include="Messages\DownloadTangoVersionRequest.cs" />
<Compile Include="Messages\DownloadTangoVersionResponse.cs" />
+ <Compile Include="Messages\ForgotPasswordRequest.cs" />
+ <Compile Include="Messages\ForgotPasswordResponse.cs" />
<Compile Include="Messages\LoginRequest.cs" />
<Compile Include="Messages\LoginResponse.cs" />
<Compile Include="Messages\RefreshTokenRequest.cs" />
<Compile Include="Messages\RefreshTokenResponse.cs" />
+ <Compile Include="Messages\UserInvitationEmailResponse.cs" />
+ <Compile Include="Messages\UserInvitationEmailRequest.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>