UNPKG

@btc-vision/bsi-common

Version:

Common library for OP_NET.

11 lines (10 loc) 338 B
import { ObjectId } from 'mongodb'; import { DBConstants } from '../DBConstants.js'; import { BaseModel } from './BaseModel.js'; export class BaseModelWithId extends BaseModel { constructor(id, version) { super(); this._id = id || new ObjectId(DBConstants.NULL_OBJECT_ID); this.version = version || 0; } }