summaryrefslogtreecommitdiff
path: root/Forms/UserAccountLoginForm.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Forms/UserAccountLoginForm.cs')
-rw-r--r--Forms/UserAccountLoginForm.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/Forms/UserAccountLoginForm.cs b/Forms/UserAccountLoginForm.cs
new file mode 100644
index 0000000..a19698d
--- /dev/null
+++ b/Forms/UserAccountLoginForm.cs
@@ -0,0 +1,10 @@
+using System.ComponentModel.DataAnnotations;
+
+namespace BackendPIA.Forms {
+ public class UserAccountLoginForm {
+ [Required]
+ public string? Email { get; set; }
+ [Required]
+ public string? Password { get; set; }
+ }
+} \ No newline at end of file