jellyfin/MediaBrowser.Model/LiveTv/RecordingInfoDto.cs

60 lines
1.6 KiB
C#
Raw Normal View History

2013-10-31 21:45:58 +01:00
using System;
namespace MediaBrowser.Model.LiveTv
{
2013-11-25 21:39:23 +01:00
public class RecordingInfoDto
2013-10-31 21:45:58 +01:00
{
/// <summary>
/// Id of the recording.
/// </summary>
public string Id { get; set; }
2013-11-25 22:53:06 +01:00
/// <summary>
/// Gets or sets the external identifier.
/// </summary>
/// <value>The external identifier.</value>
public string ExternalId { get; set; }
/// <summary>
/// Gets or sets the program identifier.
/// </summary>
/// <value>The program identifier.</value>
public string ProgramId { get; set; }
/// <summary>
/// ChannelId of the recording.
/// </summary>
2013-10-31 21:45:58 +01:00
public string ChannelId { get; set; }
/// <summary>
/// ChannelName of the recording.
/// </summary>
2013-10-31 21:45:58 +01:00
public string ChannelName { get; set; }
/// <summary>
/// Name of the recording.
/// </summary>
2013-10-31 21:45:58 +01:00
public string Name { get; set; }
/// <summary>
/// Description of the recording.
/// </summary>
2013-10-31 21:45:58 +01:00
public string Description { get; set; }
/// <summary>
/// The start date of the recording, in UTC.
2013-10-31 21:45:58 +01:00
/// </summary>
public DateTime StartDate { get; set; }
/// <summary>
/// The end date of the recording, in UTC.
2013-10-31 21:45:58 +01:00
/// </summary>
public DateTime EndDate { get; set; }
2013-11-26 03:53:48 +01:00
/// <summary>
/// Gets or sets the status.
/// </summary>
/// <value>The status.</value>
public RecordingStatus Status { get; set; }
2013-10-31 21:45:58 +01:00
}
}