item.js 149 B

1234567
  1. class Item {
  2. constructor(id, type, description) {
  3. this.id = id;
  4. this.type = type;
  5. this.description = description;
  6. }
  7. }