16 lines
331 B
C#
16 lines
331 B
C#
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;
|
|
}
|
|
}
|
|
} |