19 lines
321 B
C#
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!
|
||
|
}
|
||
|
}
|
||
|
}
|