diff options
| author | stefan <stefan@hegedues.at> | 2018-09-12 19:26:21 +0200 |
|---|---|---|
| committer | stefan <stefan@hegedues.at> | 2018-09-12 19:26:21 +0200 |
| commit | 48facb797ed912e4ea6b04b17d1ff190ac2daac4 (patch) | |
| tree | 8dae77a31670a888d733484cb17dd4077d5444e8 /MediaBrowser.Model/LiveTv/SeriesTimerInfoDto.cs | |
| parent | c32d8656382a0eacb301692e0084377fc433ae9b (diff) | |
Update to 3.5.2 and .net core 2.1
Diffstat (limited to 'MediaBrowser.Model/LiveTv/SeriesTimerInfoDto.cs')
| -rw-r--r-- | MediaBrowser.Model/LiveTv/SeriesTimerInfoDto.cs | 94 |
1 files changed, 0 insertions, 94 deletions
diff --git a/MediaBrowser.Model/LiveTv/SeriesTimerInfoDto.cs b/MediaBrowser.Model/LiveTv/SeriesTimerInfoDto.cs deleted file mode 100644 index 743caa97e..000000000 --- a/MediaBrowser.Model/LiveTv/SeriesTimerInfoDto.cs +++ /dev/null @@ -1,94 +0,0 @@ -using MediaBrowser.Model.Entities; -using System; -using System.Collections.Generic; -using System.Diagnostics; -using MediaBrowser.Model.Serialization; - -namespace MediaBrowser.Model.LiveTv -{ - /// <summary> - /// Class SeriesTimerInfoDto. - /// </summary> - [DebuggerDisplay("Name = {Name}")] - public class SeriesTimerInfoDto : BaseTimerInfoDto - { - public SeriesTimerInfoDto() - { - ImageTags = new Dictionary<ImageType, string>(); - Days = new DayOfWeek[] { }; - Type = "SeriesTimer"; - } - - /// <summary> - /// Gets or sets a value indicating whether [record any time]. - /// </summary> - /// <value><c>true</c> if [record any time]; otherwise, <c>false</c>.</value> - public bool RecordAnyTime { get; set; } - - public bool SkipEpisodesInLibrary { get; set; } - - /// <summary> - /// Gets or sets a value indicating whether [record any channel]. - /// </summary> - /// <value><c>true</c> if [record any channel]; otherwise, <c>false</c>.</value> - public bool RecordAnyChannel { get; set; } - - public int KeepUpTo { get; set; } - - /// <summary> - /// Gets or sets a value indicating whether [record new only]. - /// </summary> - /// <value><c>true</c> if [record new only]; otherwise, <c>false</c>.</value> - public bool RecordNewOnly { get; set; } - - /// <summary> - /// Gets or sets the days. - /// </summary> - /// <value>The days.</value> - public DayOfWeek[] Days { get; set; } - - /// <summary> - /// Gets or sets the day pattern. - /// </summary> - /// <value>The day pattern.</value> - public DayPattern? DayPattern { get; set; } - - /// <summary> - /// Gets or sets the image tags. - /// </summary> - /// <value>The image tags.</value> - public Dictionary<ImageType, string> ImageTags { get; set; } - - /// <summary> - /// Gets or sets the parent thumb item id. - /// </summary> - /// <value>The parent thumb item id.</value> - public string ParentThumbItemId { get; set; } - - /// <summary> - /// Gets or sets the parent thumb image tag. - /// </summary> - /// <value>The parent thumb image tag.</value> - public string ParentThumbImageTag { get; set; } - - /// <summary> - /// Gets or sets the parent primary image item identifier. - /// </summary> - /// <value>The parent primary image item identifier.</value> - public string ParentPrimaryImageItemId { get; set; } - - /// <summary> - /// Gets or sets the parent primary image tag. - /// </summary> - /// <value>The parent primary image tag.</value> - public string ParentPrimaryImageTag { get; set; } - } - - public enum KeepUntil - { - UntilDeleted, - UntilSpaceNeeded, - UntilWatched, - UntilDate - } -} |
