aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md12
1 files changed, 9 insertions, 3 deletions
diff --git a/README.md b/README.md
index 0c0675e..19e2e5f 100644
--- a/README.md
+++ b/README.md
@@ -81,11 +81,17 @@ The script will create (and edit where specified) the following files:
│ │ └─ ControllerCarMappings.cs
│ ├─ Controllers
│ │ └─ CarControllers.cs
+│ ├─ Models
+│ │ └─ Car
+│ │ ├─ CarViewModel.cs
+│ │ ├─ CreateCarViewModel.cs
+│ │ └─ EditCarViewModel.cs
│ └─ Views
│ ├─ Car
-│ │ ├─ CarViewModel.cs
-│ │ ├─ CreateCarViewModel.cs
-│ │ └─ EditCarViewModel.cs
+│ │ ├─ Index.cshtml
+│ │ ├─ Create.cshtml
+│ │ ├─ Edit.cshtml
+│ │ └─ Delete.cshtml
│ └─ _ViewImports.cshtml (Only edited; Adds reference to the Car View Models namespace)
└─ Startup.cs (Only edited; Adds dependency injection configuration for CarService)
```