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

23 lines
404 B
C#

using System.Collections.Generic;
namespace Bücherwurm
{
class Inventory
{
private List<Item> InventoryList {get; set;}
public Inventory(){
InventoryList = new List<Item>();
}
public void Add(Book Book)
{
//TODO: implement!
}
public void Remove(int Id)
{
//TODO: implement!
}
}
}