2014-01-07 18:39:35 +00:00
|
|
|
|
using System;
|
2014-01-14 20:03:35 +00:00
|
|
|
|
using System.Collections.Generic;
|
2014-01-07 18:39:35 +00:00
|
|
|
|
|
2013-09-26 15:48:14 +00:00
|
|
|
|
namespace MediaBrowser.Model.LiveTv
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class ServiceInfo
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class LiveTvServiceInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
}
|
2014-01-07 18:39:35 +00:00
|
|
|
|
|
|
|
|
|
public class GuideInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the start date.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The start date.</value>
|
|
|
|
|
public DateTime StartDate { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the end date.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The end date.</value>
|
|
|
|
|
public DateTime EndDate { get; set; }
|
|
|
|
|
}
|
2014-01-14 20:03:35 +00:00
|
|
|
|
|
|
|
|
|
public class LiveTvInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the services.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The services.</value>
|
|
|
|
|
public List<LiveTvServiceInfo> Services { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the name of the active service.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name of the active service.</value>
|
|
|
|
|
public string ActiveServiceName { get; set; }
|
|
|
|
|
|
|
|
|
|
public LiveTvInfo()
|
|
|
|
|
{
|
|
|
|
|
Services = new List<LiveTvServiceInfo>();
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-09-26 15:48:14 +00:00
|
|
|
|
}
|