Buecherwurm/Inventory.cs

23 lines
404 B
C#
Raw Normal View History

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