Commit Inicial: Se definen tecnologías y modelos de datos.

This commit is contained in:
2025-10-02 14:48:37 -03:00
commit 80eeac45d8
22 changed files with 4919 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace Inventario.API.Models
{
public class Usuario
{
public int Id { get; set; }
public string Username { get; set; } = string.Empty;
public string? Password { get; set; }
}
}