mirror of
https://github.com/nextcloud/talk-android
synced 2025-07-10 14:24:05 +01:00
16 lines
469 B
Java
16 lines
469 B
Java
/*
|
|
* Nextcloud Talk - Android Client
|
|
*
|
|
* SPDX-FileCopyrightText: 2022 Andy Scherzinger <info@andy-scherzinger.de>
|
|
* SPDX-FileCopyrightText: 2022 Tim Krüger <t@timkrueger.me>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
package com.nextcloud.talk.webrtc;
|
|
|
|
public class Globals {
|
|
public static final String ROOM_TOKEN = "roomToken";
|
|
|
|
public static final String TARGET_PARTICIPANTS = "participants";
|
|
public static final String TARGET_ROOM = "room";
|
|
}
|