using System.Collections.Generic; namespace Bücherwurm { class Catalogue { private List Books {get; set;} public Catalogue() { Books = new List(); } public void Import(string JsonString) { //TODO: implement! } } }