forked from CatVodTVOfficial/TVBoxOSC
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request CatVodTVOfficial#47 from haha459862/main
直播功能修改
- Loading branch information
Showing
11 changed files
with
426 additions
and
208 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
app/src/main/java/com/github/tvbox/osc/bean/ChannelGroup.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
package com.github.tvbox.osc.bean; | ||
|
||
import java.util.ArrayList; | ||
|
||
public class ChannelGroup { | ||
/** | ||
* num : 1 | ||
* name : 央视频道 | ||
* password : 频道密码 | ||
*/ | ||
private int groupNum; | ||
private String groupName; | ||
private String groupPassword; | ||
private ArrayList<LiveChannel> liveChannels; | ||
private boolean isDefault; | ||
|
||
|
||
public int getGroupNum() { | ||
return groupNum; | ||
} | ||
|
||
public void setGroupNum(int groupNum) { | ||
this.groupNum = groupNum; | ||
} | ||
|
||
public String getGroupName() { | ||
return groupName; | ||
} | ||
|
||
public void setGroupName(String groupName) { | ||
this.groupName = groupName; | ||
} | ||
|
||
public ArrayList<LiveChannel> getLiveChannels() { | ||
return liveChannels; | ||
} | ||
|
||
public void setLiveChannels(ArrayList<LiveChannel> liveChannels) { | ||
this.liveChannels = liveChannels; | ||
} | ||
|
||
public boolean isDefault() { | ||
return isDefault; | ||
} | ||
|
||
public void setDefault(boolean aDefault) { | ||
isDefault = aDefault; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.