using System.Collections.Generic;
public static void Main()
Chapters = { new Chapter() }
Console.WriteLine(book.Chapters.Count);
public int Id { get; set; }
public string Title { get; set; }
public Book() { Chapters = new List<Chapter>(); }
public IList<Chapter> Chapters