hydrogen-web/src/matrix/room/sending/PendingEvent.js

12 lines
280 B
JavaScript

export default class PendingEvent {
constructor(roomId, queueIndex, eventType, content, txnId) {
this._roomId = roomId;
this._eventType = eventType;
this._content = content;
this._txnId = txnId;
this._queueIndex = queueIndex;
}
}