mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-26 07:00:02 +01:00
15 lines
357 B
Kotlin
15 lines
357 B
Kotlin
/*
|
|
* Nextcloud Talk - Android Client
|
|
*
|
|
* SPDX-FileCopyrightText: 2022 Andy Scherzinger <info@andy-scherzinger.de>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
package com.nextcloud.talk.adapters
|
|
|
|
import com.nextcloud.talk.models.json.reactions.ReactionVoter
|
|
|
|
data class ReactionItem(
|
|
val reactionVoter: ReactionVoter,
|
|
val reaction: String?
|
|
)
|