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