diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-23 13:48:30 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-23 13:48:30 -0400 |
| commit | d6cf7b51acda145d32c9944f1b66728c7e09a9f8 (patch) | |
| tree | 461ce04491def89ecf8b0aa41996a3f700e04334 /MediaBrowser.Controller/Entities | |
| parent | cc2cfabda83aa29532bc1808174e888b6fde2cd4 (diff) | |
added movie, series, folder and episode xml saving support
Diffstat (limited to 'MediaBrowser.Controller/Entities')
| -rw-r--r-- | MediaBrowser.Controller/Entities/BaseItem.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index 00ab867b2..e72ffdb0b 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -314,7 +314,7 @@ namespace MediaBrowser.Controller.Entities { throw new IOException("Unable to retrieve file system info for " + path); } - + var args = new ItemResolveArgs(ConfigurationManager.ApplicationPaths) { FileInfo = pathInfo, @@ -465,6 +465,12 @@ namespace MediaBrowser.Controller.Entities public virtual string OfficialRating { get; set; } /// <summary> + /// Gets or sets the official rating description. + /// </summary> + /// <value>The official rating description.</value> + public string OfficialRatingDescription { get; set; } + + /// <summary> /// Gets or sets the custom rating. /// </summary> /// <value>The custom rating.</value> |
