diff --git a/MediaBrowser.Controller/LiveTv/TimerInfo.cs b/MediaBrowser.Controller/LiveTv/TimerInfo.cs
index 7401dafec..624dc62ca 100644
--- a/MediaBrowser.Controller/LiveTv/TimerInfo.cs
+++ b/MediaBrowser.Controller/LiveTv/TimerInfo.cs
@@ -57,5 +57,17 @@ namespace MediaBrowser.Controller.LiveTv
///
/// true if this instance is recurring; otherwise, false.
public bool IsRecurring { get; set; }
+
+ ///
+ /// Gets or sets the pre padding seconds.
+ ///
+ /// The pre padding seconds.
+ public int PrePaddingSeconds { get; set; }
+
+ ///
+ /// Gets or sets the post padding seconds.
+ ///
+ /// The post padding seconds.
+ public int PostPaddingSeconds { get; set; }
}
}
diff --git a/MediaBrowser.Model/LiveTv/TimerInfoDto.cs b/MediaBrowser.Model/LiveTv/TimerInfoDto.cs
index ddefce59e..5d8ac20c4 100644
--- a/MediaBrowser.Model/LiveTv/TimerInfoDto.cs
+++ b/MediaBrowser.Model/LiveTv/TimerInfoDto.cs
@@ -62,5 +62,17 @@ namespace MediaBrowser.Model.LiveTv
///
/// true if this instance is recurring; otherwise, false.
public bool IsRecurring { get; set; }
+
+ ///
+ /// Gets or sets the pre padding seconds.
+ ///
+ /// The pre padding seconds.
+ public int PrePaddingSeconds { get; set; }
+
+ ///
+ /// Gets or sets the post padding seconds.
+ ///
+ /// The post padding seconds.
+ public int PostPaddingSeconds { get; set; }
}
}
diff --git a/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs b/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs
index dc68670d2..b55393213 100644
--- a/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs
+++ b/MediaBrowser.Server.Implementations/LiveTv/LiveTvManager.cs
@@ -514,7 +514,9 @@ namespace MediaBrowser.Server.Implementations.LiveTv
ExternalId = info.Id,
ChannelId = GetInternalChannelId(service.Name, info.ChannelId, info.ChannelName).ToString("N"),
Status = info.Status,
- IsRecurring = info.IsRecurring
+ IsRecurring = info.IsRecurring,
+ PrePaddingSeconds = info.PrePaddingSeconds,
+ PostPaddingSeconds = info.PostPaddingSeconds
};
if (!string.IsNullOrEmpty(info.ProgramId))