Buecherwurm/Catalogue.cs
2020-04-23 14:47:50 +02:00

19 lines
321 B
C#

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