This is a simple Todo App built with ASP.NET. It allows you to manage your to-dos by performing CRUD operations (Create, Read, Update, Delete) through a RESTful API. The database mapping is done by Entity Framework.
- GET /: Retrieves all to-dos.
- GET /{id}: Retrieves a to do by ID.
- POST /: Creates a new to do.
- PUT /{id}: Updates a to do by ID.
- DELETE /{id}: Deletes a to do by ID.
This API was created using Balta.io's backend course. I recommend checking it out if you're interested in learning about .NET programming.