7 lines
144 B
C#
7 lines
144 B
C#
namespace PeopleVille.Locations
|
|
{
|
|
public class Store : Location
|
|
{
|
|
public Dictionary<object, int> Inventory { get; set; }
|
|
}
|
|
} |