updated nuget for live tv

This commit is contained in:
Luke Pulverenti
2013-11-25 11:15:31 -05:00
parent fe7b8a0d96
commit 4054846a6e
14 changed files with 124 additions and 61 deletions

View File

@@ -0,0 +1,25 @@
namespace MediaBrowser.Model.LiveTv
{
/// <summary>
/// Class ProgramQuery.
/// </summary>
public class ProgramQuery
{
/// <summary>
/// Gets or sets the name of the service.
/// </summary>
/// <value>The name of the service.</value>
public string ServiceName { get; set; }
/// <summary>
/// Gets or sets the channel identifier.
/// </summary>
/// <value>The channel identifier.</value>
public string[] ChannelIdList { get; set; }
public ProgramQuery()
{
ChannelIdList = new string[] { };
}
}
}