summaryrefslogtreecommitdiff
path: root/Forms/UserAccountLoginForm.cs
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2022-11-18 16:32:38 -0600
committerHombreLaser <sebastian-440@live.com>2022-11-18 16:32:38 -0600
commita640608ab8ff895be3125ebf75a4d3d19139f5c3 (patch)
tree5634b61500b4925bb07f918ec5780a93186bb89e /Forms/UserAccountLoginForm.cs
parent22b5afd25bc29f920f46456c0a6acf6847a9af5e (diff)
Añadido login de administradores
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