An open API service indexing awesome lists of open source software.

https://github.com/binhnhu1409/-practice-csharp--todo-app-backend

Design the structure of backend for TODO app using C#
https://github.com/binhnhu1409/-practice-csharp--todo-app-backend

backend csharp

Last synced: 12 months ago
JSON representation

Design the structure of backend for TODO app using C#

Awesome Lists containing this project

README

          

# -PRACTICE-Csharp--TODO-app-backend
In this assignment, the task is to design structure and hierachy for a backend service of TODO app using C# (no connect database yet).

## Structure
```
│ -PRACTICE-Csharp--TODO-app-backend.csproj
│ Program.cs
│ README.md
├───Controllers
│ TodoController.cs
├───DTOs
│ TodoRequest.cs
├───Models
│ TodoTask.cs
│ User.cs
├───Repositories
│ FakeTodoRepository.cs
│ ITodoRepository.cs
└───Services
ITodoService.cs
```