summaryrefslogtreecommitdiff
path: root/Forms
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2022-11-20 16:25:07 -0600
committerHombreLaser <sebastian-440@live.com>2022-11-20 16:25:07 -0600
commit0eb1eacf11f8c713478c08633f92d7579da91992 (patch)
tree5f3704778ac581493369b34ace33fcfb29caca4f /Forms
parent61e9edfd4607b5eab5c291f49cdc3b2c7cb9d654 (diff)
Añadido controlador de administradores
Diffstat (limited to 'Forms')
-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