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#127 from haha459862/main
直播增加设置功能
- Loading branch information
Showing
27 changed files
with
1,796 additions
and
1,337 deletions.
There are no files selected for viewing
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
58 changes: 0 additions & 58 deletions
58
app/src/main/java/com/github/tvbox/osc/bean/ChannelGroup.java
This file was deleted.
Oops, something went wrong.
47 changes: 47 additions & 0 deletions
47
app/src/main/java/com/github/tvbox/osc/bean/LiveChannelGroup.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,47 @@ | ||
package com.github.tvbox.osc.bean; | ||
|
||
import java.util.ArrayList; | ||
|
||
public class LiveChannelGroup { | ||
/** | ||
* groupIndex : 分组索引号 | ||
* groupName : 分组名称 | ||
* password : 分组密码 | ||
*/ | ||
private int groupIndex; | ||
private String groupName; | ||
private String groupPassword; | ||
private ArrayList<LiveChannelItem> liveChannelItems; | ||
|
||
public int getGroupIndex() { | ||
return groupIndex; | ||
} | ||
|
||
public void setGroupIndex(int groupIndex) { | ||
this.groupIndex = groupIndex; | ||
} | ||
|
||
public String getGroupName() { | ||
return groupName; | ||
} | ||
|
||
public void setGroupName(String groupName) { | ||
this.groupName = groupName; | ||
} | ||
|
||
public ArrayList<LiveChannelItem> getLiveChannels() { | ||
return liveChannelItems; | ||
} | ||
|
||
public void setLiveChannels(ArrayList<LiveChannelItem> liveChannelItems) { | ||
this.liveChannelItems = liveChannelItems; | ||
} | ||
|
||
public String getGroupPassword() { | ||
return groupPassword; | ||
} | ||
|
||
public void setGroupPassword(String groupPassword) { | ||
this.groupPassword = groupPassword; | ||
} | ||
} |
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.