Initial commit
This commit is contained in:
14
lib/services/ItemDictionary.js
Normal file
14
lib/services/ItemDictionary.js
Normal file
@@ -0,0 +1,14 @@
|
||||
var ItemDictionary = (function () {
|
||||
function ItemDictionary() {
|
||||
}
|
||||
ItemDictionary.prototype.Get = function (key) {
|
||||
return this[key];
|
||||
};
|
||||
ItemDictionary.prototype.Add = function (key, value) {
|
||||
this[key] = value;
|
||||
};
|
||||
return ItemDictionary;
|
||||
}());
|
||||
export { ItemDictionary };
|
||||
|
||||
//# sourceMappingURL=ItemDictionary.js.map
|
||||
Reference in New Issue
Block a user