jellyfin/MediaBrowser.Controller/LiveTv/LiveTvVideoRecording.cs

53 lines
1.2 KiB
C#
Raw Normal View History

2013-12-19 22:51:32 +01:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Controller.LiveTv
{
public class LiveTvVideoRecording : Video, ILiveTvRecording
2013-12-19 22:51:32 +01:00
{
/// <summary>
/// Gets the user data key.
/// </summary>
/// <returns>System.String.</returns>
public override string GetUserDataKey()
{
return GetClientTypeName() + "-" + Name;
}
public RecordingInfo RecordingInfo { get; set; }
public string ServiceName { get; set; }
public override string MediaType
{
get
{
return Model.Entities.MediaType.Video;
2013-12-19 22:51:32 +01:00
}
}
public override LocationType LocationType
{
get
{
if (!string.IsNullOrEmpty(Path))
{
return base.LocationType;
}
2013-12-19 22:51:32 +01:00
return LocationType.Remote;
}
}
public override string GetClientTypeName()
{
return "Recording";
}
public override bool IsSaveLocalMetadataEnabled()
{
return false;
}
2013-12-19 22:51:32 +01:00
}
}