aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/TV
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-01-14 15:24:56 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-01-14 15:24:56 -0500
commite9a5bb699e42d6d7aa166ab03a35bb64060828b4 (patch)
tree52789e15aea4e01a0bcc04dd495e4b6dfff8114e /MediaBrowser.Controller/Entities/TV
parentf4b890f163cd3be5b399ef03be409106ab8ff60b (diff)
added recording progress bars
Diffstat (limited to 'MediaBrowser.Controller/Entities/TV')
-rw-r--r--MediaBrowser.Controller/Entities/TV/Episode.cs42
1 files changed, 0 insertions, 42 deletions
diff --git a/MediaBrowser.Controller/Entities/TV/Episode.cs b/MediaBrowser.Controller/Entities/TV/Episode.cs
index 42897e09fe..61bf14543f 100644
--- a/MediaBrowser.Controller/Entities/TV/Episode.cs
+++ b/MediaBrowser.Controller/Entities/TV/Episode.cs
@@ -123,48 +123,6 @@ namespace MediaBrowser.Controller.Entities.TV
}
/// <summary>
- /// Override this if you need to combine/collapse person information
- /// </summary>
- /// <value>All people.</value>
- [IgnoreDataMember]
- public override IEnumerable<PersonInfo> AllPeople
- {
- get
- {
- if (People == null) return Series != null ? Series.People : People;
- return Series != null && Series.People != null ? People.Concat(Series.People) : base.AllPeople;
- }
- }
-
- /// <summary>
- /// Gets all genres.
- /// </summary>
- /// <value>All genres.</value>
- [IgnoreDataMember]
- public override IEnumerable<string> AllGenres
- {
- get
- {
- if (Genres == null) return Series != null ? Series.Genres : Genres;
- return Series != null && Series.Genres != null ? Genres.Concat(Series.Genres) : base.AllGenres;
- }
- }
-
- /// <summary>
- /// Gets all studios.
- /// </summary>
- /// <value>All studios.</value>
- [IgnoreDataMember]
- public override IEnumerable<string> AllStudios
- {
- get
- {
- if (Studios == null) return Series != null ? Series.Studios : Studios;
- return Series != null && Series.Studios != null ? Studios.Concat(Series.Studios) : base.AllStudios;
- }
- }
-
- /// <summary>
/// Our rating comes from our series
/// </summary>
[IgnoreDataMember]