add crud to api
All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 6s
All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 6s
This commit is contained in:
10
api/src/Models/User.cs
Normal file
10
api/src/Models/User.cs
Normal 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; } = "";
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user