Update first-web-api.md

pull/4925/head
Rick Anderson 2017-12-04 18:34:13 -10:00 committed by GitHub
parent 152469f1ce
commit 41c2621217
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ A model is an object that represents the data in the app. In this case, the only
Add a folder named "Models". In Solution Explorer, right-click the project. Select **Add** > **New Folder**. Name the folder *Models*.
Note: The model classes go anywhere in in the project. The *Models* folder is used by convention for model classes.
Note: The model classes go anywhere in the project. The *Models* folder is used by convention for model classes.
Add a `TodoItem` class. Right-click the *Models* folder and select **Add** > **Class**. Name the class `TodoItem` and select **Add**.