Exam week-4 Assignment
Create a .NET Web API that allows users to manage a To-Do list. The API should support:
Retrieving all To-Do items
Retrieving a specific To-Do item by ID
Adding a new To-Do item
Updating an existing To-Do item
Deleting a To-Do item
Use an in-memory list to store To-Do items (no database required).