Add TodosController with GET/POST/PATCH/DELETE endpoints

This commit is contained in:
EugeneTes
2026-08-15 11:33:42 +00:00
parent 73676d3d01
commit 5d9eef56ff
4 changed files with 88 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
namespace Backend.Dtos;
public record UpdateTodoRequest(bool? Completed);