summaryrefslogtreecommitdiff
path: root/Forms/UserAccountForm.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Forms/UserAccountForm.cs')
-rw-r--r--Forms/UserAccountForm.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/Forms/UserAccountForm.cs b/Forms/UserAccountForm.cs
index f513a3a..cac96d4 100644
--- a/Forms/UserAccountForm.cs
+++ b/Forms/UserAccountForm.cs
@@ -1,4 +1,6 @@
using System.ComponentModel.DataAnnotations;
+using AutoMapper.Configuration.Annotations;
+
namespace BackendPIA.Forms {
public class UserAccountForm {
@@ -9,6 +11,7 @@ namespace BackendPIA.Forms {
public string? UserName { get; set; }
[Required]
+ [Ignore]
public string? Password { get; set; }
}
} \ No newline at end of file