Wrong version of .NET Core in one of the projects

This commit is contained in:
2019-11-26 21:17:07 +01:00
parent 1e60f78192
commit 56b44a63a5
7 changed files with 144 additions and 60 deletions

View File

@ -0,0 +1,16 @@
using System.Collections.Generic;
namespace Books.ConsoleApp
{
public class BooksByAuthor
{
public readonly string Author;
public readonly List<Book> Books;
public BooksByAuthor(string author, List<Book> books)
{
Author = author;
Books = books;
}
}
}