diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-13 11:58:47 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-13 11:58:47 -0400 |
| commit | fa3a5174fe2b0bad7cc021ad91c761046df77cea (patch) | |
| tree | 400c22e4606ece5670c7f8b087ff00089e6e019d /MediaBrowser.Controller | |
| parent | 3623f23c27e36b2d6a22f63604fa4b8d6d9e91fb (diff) | |
removed unused properties
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Entities/TV/Episode.cs | 19 | ||||
| -rw-r--r-- | MediaBrowser.Controller/Entities/TV/Season.cs | 16 |
2 files changed, 4 insertions, 31 deletions
diff --git a/MediaBrowser.Controller/Entities/TV/Episode.cs b/MediaBrowser.Controller/Entities/TV/Episode.cs index 116997d96..7e8540ebe 100644 --- a/MediaBrowser.Controller/Entities/TV/Episode.cs +++ b/MediaBrowser.Controller/Entities/TV/Episode.cs @@ -1,7 +1,4 @@ -using MediaBrowser.Common.Extensions; -using MediaBrowser.Model.Entities; -using System; -using System.Collections.Generic; +using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; @@ -132,20 +129,6 @@ namespace MediaBrowser.Controller.Entities.TV } /// <summary> - /// We persist the MB Id of our series object so we can always find it no matter - /// what context we happen to be loaded from. - /// </summary> - /// <value>The series item id.</value> - public Guid SeriesItemId { get; set; } - - /// <summary> - /// We persist the MB Id of our season object so we can always find it no matter - /// what context we happen to be loaded from. - /// </summary> - /// <value>The season item id.</value> - public Guid SeasonItemId { get; set; } - - /// <summary> /// The _series /// </summary> private Series _series; diff --git a/MediaBrowser.Controller/Entities/TV/Season.cs b/MediaBrowser.Controller/Entities/TV/Season.cs index 79d608459..b4dc3eae4 100644 --- a/MediaBrowser.Controller/Entities/TV/Season.cs +++ b/MediaBrowser.Controller/Entities/TV/Season.cs @@ -1,11 +1,8 @@ -using System.Collections.Generic; -using System.IO; -using MediaBrowser.Common.Extensions; -using MediaBrowser.Controller.IO; -using MediaBrowser.Controller.Library; +using MediaBrowser.Controller.Library; using MediaBrowser.Controller.Localization; -using MediaBrowser.Model.Entities; using System; +using System.Collections.Generic; +using System.IO; using System.Runtime.Serialization; namespace MediaBrowser.Controller.Entities.TV @@ -83,13 +80,6 @@ namespace MediaBrowser.Controller.Entities.TV } /// <summary> - /// We persist the MB Id of our series object so we can always find it no matter - /// what context we happen to be loaded from. - /// </summary> - /// <value>The series item id.</value> - public Guid SeriesItemId { get; set; } - - /// <summary> /// The _series /// </summary> private Series _series; |
