Created
January 9, 2020 01:06
-
-
Save taylorc/9e2a48e37a63338fd6d76e8892e178c6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var todoListEntities = new List<TodoList> | |
{ | |
new TodoList{Colour="Blue", Items = new List<TodoItem>{ | |
new TodoItem{Title="Dynamics" }, | |
new TodoItem{Title="Case" }, | |
new TodoItem{Title="Management" }, | |
new TodoItem{Title="Accelerator" }, | |
new TodoItem{Title="HSD" } | |
} | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment