jellyfin/MediaBrowser.Model/LiveTv/RecordingInfo.cs
2013-10-31 21:45:58 +01:00

28 lines
615 B
C#

using System;
namespace MediaBrowser.Model.LiveTv
{
public class RecordingInfo
{
public string ChannelId { get; set; }
public string ChannelName { get; set; }
public string Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
/// <summary>
/// The start date of the recording, in UTC
/// </summary>
public DateTime StartDate { get; set; }
/// <summary>
/// The end date of the recording, in UTC
/// </summary>
public DateTime EndDate { get; set; }
}
}