This repository has been archived on 2022-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
hydrogen-web/src/matrix/room/sending/PendingEvent.js

12 lines
280 B
JavaScript
Raw Normal View History

2019-06-28 04:22:54 +05:30
export default class PendingEvent {
2019-07-01 13:30:29 +05:30
constructor(roomId, queueIndex, eventType, content, txnId) {
this._roomId = roomId;
this._eventType = eventType;
this._content = content;
this._txnId = txnId;
this._queueIndex = queueIndex;
2019-06-28 04:22:54 +05:30
}
}