Buecherwurm/Catalogue.cs

19 lines
321 B
C#
Raw Normal View History

2020-04-23 12:47:50 +00:00
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!
}
}
}