Skip to content

Commit 15eb167

Browse files
committed
Fix merge conflicts
1 parent 865589b commit 15eb167

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
package org.schabi.newpipe.extractor.services.media_ccc.extractors;
2+
3+
import com.grack.nanojson.JsonObject;
4+
5+
final class MediaCCCLiveStreamMapperDTO {
6+
private final JsonObject streamJsonObj;
7+
private final String urlKey;
8+
private final JsonObject urlValue;
9+
10+
MediaCCCLiveStreamMapperDTO(final JsonObject streamJsonObj,
11+
final String urlKey,
12+
final JsonObject urlValue) {
13+
this.streamJsonObj = streamJsonObj;
14+
this.urlKey = urlKey;
15+
this.urlValue = urlValue;
16+
}
17+
18+
JsonObject getStreamJsonObj() {
19+
return streamJsonObj;
20+
}
21+
22+
String getUrlKey() {
23+
return urlKey;
24+
}
25+
26+
JsonObject getUrlValue() {
27+
return urlValue;
28+
}
29+
}

0 commit comments

Comments
 (0)