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

8
backend/Models/Sector.cs Normal file
View File

@@ -0,0 +1,8 @@
namespace Inventario.API.Models
{
public class Sector
{
public int Id { get; set; }
public string Nombre { get; set; } = string.Empty;
}
}