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

3
backend/Dtos/TodoDto.cs Normal file
View File

@@ -0,0 +1,3 @@
namespace Backend.Dtos;
public record TodoDto(long Id, string Title, bool Completed, DateTimeOffset CreatedAt);