collection-progress.js 276 B

12345678910111213
  1. class CollectionProgress {
  2. constructor(collectionName, totalCount) {
  3. this.collectionName = collectionName;
  4. this.currentCount = 0;
  5. this.insertedCount = 0;
  6. this.modifiedCount = 0;
  7. this.totalCount = totalCount;
  8. }
  9. }
  10. module.exports = CollectionProgress;