diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-09-27 01:13:56 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-09-27 01:13:56 -0400 |
| commit | 64d63c1b4b1f5088cff899541b71c782e26a0a24 (patch) | |
| tree | 843ac39a71bc5182ad5d780bba4c0bb0ed539df3 /MediaBrowser.Controller | |
| parent | adb39f40904947917a14e260579098cbc0d9829d (diff) | |
implement keep up to
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/TimerInfo.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/LiveTv/TimerInfo.cs b/MediaBrowser.Controller/LiveTv/TimerInfo.cs index ea21ba46e5..42c3480ce7 100644 --- a/MediaBrowser.Controller/LiveTv/TimerInfo.cs +++ b/MediaBrowser.Controller/LiveTv/TimerInfo.cs @@ -9,6 +9,7 @@ namespace MediaBrowser.Controller.LiveTv public TimerInfo() { Genres = new List<string>(); + KeepUntil = KeepUntil.UntilDeleted; } /// <summary> @@ -109,5 +110,7 @@ namespace MediaBrowser.Controller.LiveTv public string ShortOverview { get; set; } public string OfficialRating { get; set; } public List<string> Genres { get; set; } + public string RecordingPath { get; set; } + public KeepUntil KeepUntil { get; set; } } } |
