add crud to api
All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 6s

This commit is contained in:
2026-03-10 22:49:14 -05:00
parent 728258465d
commit 9b6a4c75b9
12 changed files with 172 additions and 61 deletions

10
api/src/Models/User.cs Normal file
View File

@@ -0,0 +1,10 @@
namespace agologumApi.Models;
public class User {
public int Id { get; set; }
public string Name { get; set; } = "";
public string Email { get; set; } = "";
};