-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kai Yang
committed
May 19, 2015
1 parent
43cccdd
commit 8659e68
Showing
30 changed files
with
978 additions
and
70 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
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
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
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 |
---|---|---|
@@ -1,9 +1,30 @@ | ||
namespace Kfstorm.DoubanFM.Core | ||
{ | ||
/// <summary> | ||
/// Represents a group of channels | ||
/// </summary> | ||
public class ChannelGroup | ||
{ | ||
/// <summary> | ||
/// Gets the ID of the group. | ||
/// </summary> | ||
/// <value> | ||
/// The ID of the group. | ||
/// </value> | ||
public int GroupId { get; internal set; } | ||
/// <summary> | ||
/// Gets the name of the group. | ||
/// </summary> | ||
/// <value> | ||
/// The name of the group. | ||
/// </value> | ||
public string GroupName { get; internal set; } | ||
/// <summary> | ||
/// Gets the channels. | ||
/// </summary> | ||
/// <value> | ||
/// The channels. | ||
/// </value> | ||
public Channel[] Channels { get; internal set; } | ||
} | ||
} |
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 |
---|---|---|
@@ -1,7 +1,16 @@ | ||
namespace Kfstorm.DoubanFM.Core | ||
{ | ||
/// <summary> | ||
/// Represents a list of channels, including many channel groups. | ||
/// </summary> | ||
public class ChannelList | ||
{ | ||
/// <summary> | ||
/// Gets the channel groups. | ||
/// </summary> | ||
/// <value> | ||
/// The channel groups. | ||
/// </value> | ||
public ChannelGroup[] ChannelGroups { get; internal set; } | ||
} | ||
} |
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
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
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
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
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.