Wrong version of .NET Core in one of the projects
This commit is contained in:
16
Books.ConsoleApp/BooksByAuthor.cs
Normal file
16
Books.ConsoleApp/BooksByAuthor.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user