From e06c51569a280f6bb0e3c26792c8add1bc5e8609 Mon Sep 17 00:00:00 2001 From: Harinandana Ajakkala <57456825+harinandana02@users.noreply.github.com> Date: Sun, 4 Jan 2026 20:24:42 +0100 Subject: [PATCH] Fix typo in DTO model file path (#36572) Changed the file name from TodoItemsDTO.cs to TodoItemDTO.cs in instruction line. --- aspnetcore/tutorials/first-web-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/first-web-api.md b/aspnetcore/tutorials/first-web-api.md index 57a8b89b0423..1003cbeff66b 100644 --- a/aspnetcore/tutorials/first-web-api.md +++ b/aspnetcore/tutorials/first-web-api.md @@ -800,7 +800,7 @@ The secret field needs to be hidden from this app, but an administrative app cou Verify you can post and get the secret field. -Create a DTO model in a **Models/TodoItemsDTO.cs** file: +Create a DTO model in a **Models/TodoItemDTO.cs** file: :::code language="csharp" source="~/tutorials/first-web-api/samples/9.0/TodoApiDTO/Models/TodoItemDTO.cs" :::