mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -07:00
32 lines
715 B
C#
32 lines
715 B
C#
using System;
|
|
|
|
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; }
|
|
}
|
|
|
|
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; }
|
|
}
|
|
}
|