From a640608ab8ff895be3125ebf75a4d3d19139f5c3 Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Fri, 18 Nov 2022 16:32:38 -0600 Subject: AƱadido login de administradores MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Forms/UserAccountLoginForm.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Forms/UserAccountLoginForm.cs (limited to 'Forms/UserAccountLoginForm.cs') 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 -- cgit v1.2.3