aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-23 13:48:30 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-23 13:48:30 -0400
commitd6cf7b51acda145d32c9944f1b66728c7e09a9f8 (patch)
tree461ce04491def89ecf8b0aa41996a3f700e04334 /MediaBrowser.Controller/Entities
parentcc2cfabda83aa29532bc1808174e888b6fde2cd4 (diff)
added movie, series, folder and episode xml saving support
Diffstat (limited to 'MediaBrowser.Controller/Entities')
-rw-r--r--MediaBrowser.Controller/Entities/BaseItem.cs8
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>