login funcional

This commit is contained in:
2024-09-09 23:27:50 -03:00
parent 3de35ba192
commit 48983ab179
24 changed files with 2404 additions and 93 deletions
+10
View File
@@ -0,0 +1,10 @@
using System.ComponentModel.DataAnnotations.Schema;
namespace Entidades.Dto;
[NotMapped]
public class LoginDto
{
public string Usuario {get; set;} = string.Empty;
public string Contrasena {get; set;} = string.Empty;
}