1// SPDX-FileCopyrightText: 2019 Kitsune Ral <Kitsune-Ral@users.sf.net>
2// SPDX-License-Identifier: LGPL-2.1-or-later
3
4#pragma once
5
6#include "stateevent.h"
7
8namespace Quotient {
9class QUOTIENT_API RoomTombstoneEvent : public StateEvent {
10public:
11 QUO_EVENT(RoomTombstoneEvent, "m.room.tombstone")
12
13 using StateEvent::StateEvent;
14
15 QString serverMessage() const;
16 QString successorRoomId() const;
17};
18} // namespace Quotient
19