1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2026-01-26 04:43:36 +00:00

Convert newpipe/local/playlist/PlayListShareMode to kotlin

This commit is contained in:
Yevhen Babiichuk (DustDFG)
2026-01-01 15:08:21 +02:00
parent cd4cb40e6d
commit 7d1d88fb87
2 changed files with 12 additions and 8 deletions

View File

@@ -1,8 +0,0 @@
package org.schabi.newpipe.local.playlist;
public enum PlayListShareMode {
JUST_URLS,
WITH_TITLES,
YOUTUBE_TEMP_PLAYLIST
}

View File

@@ -0,0 +1,12 @@
/*
* SPDX-FileCopyrightText: 2025 NewPipe contributors <https://newpipe.net>
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package org.schabi.newpipe.local.playlist
enum class PlayListShareMode {
JUST_URLS,
WITH_TITLES,
YOUTUBE_TEMP_PLAYLIST
}