2
0

Some small improvements for clarity.

* PostModel -> PostDto
* 404 test case
* README
This commit is contained in:
2026-02-18 10:41:52 +01:00
parent f1c0021ad3
commit c3c8c85afe
4 changed files with 6 additions and 6 deletions

View File

@@ -16,7 +16,7 @@ public class JsonPlaceholderClient
// TODO: Configure the client as needed.
}
public async Task<PostModel?> GetPostByIdAsync(int id, CancellationToken ct = default)
public async Task<PostDto?> GetPostByIdAsync(int id, CancellationToken ct = default)
{
// TODO: Implement the logic to call the external service and retrieve the post by ID.
throw new NotImplementedException("This method will be implemented in Phase 1.");