blob: d89725c68ae887b0334c94ec8c8e61304a2a0e0d [file] [log] [blame]
Alireza92b10592022-11-23 14:01:45 -05001/*
2Copyright (C) 2022 Savoir-faire Linux Inc. *
3Author: Alireza Toghiani Khorasgani alireza.toghiani@savoirfairelinux.com *
4This program is free software; you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation; either version 3 of the License, or
7(at your option) any later version. *
8This program is distributed in the hope that it will be useful,
9but WITHOUT ANY WARRANTY; without even the implied warranty of
10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11GNU General Public License for more details. *
12You should have received a copy of the GNU General Public License
13along with this program; if not, write to the Free Software
14Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */
15
16import Foundation
17
18struct EventData {
19 var accountId, jamiId, conversationId, content, groupTitle: String
20 init(accountId: String = "", jamiId: String = "", conversationId: String = "", content: String = "", groupTitle: String = "") {
21 self.accountId = accountId
22 self.jamiId = jamiId
23 self.conversationId = conversationId
24 self.content = content
25 self.groupTitle = groupTitle
26 }
27}