1.2: ElevenNote.Models
Last updated
Last updated
In this module, we'll create our solution with our ElevenNote.Models layer.
This layer will be used to house the models for our application. These models will be classes used in almost all layers of our application.
In the Solution Explorer, right click on the ElevenNote Solution
Make sure to right click on the Solution and NOT the project ElevenNote.WebMVC
Go to Add -> New Project
Select Visual C#, then Windows Classic Desktop
Choose Class Library
Name the project ElevenNote.Models
In the ElevenNote.Models project, right click on Class1.cs
and delete it. Some people might be able to hit ctrl + x.
We'll leave this project empty for now.