diff options
| author | Eric Reed <ebr@mediabrowser3.com> | 2013-03-26 20:28:07 -0400 |
|---|---|---|
| committer | Eric Reed <ebr@mediabrowser3.com> | 2013-03-26 20:28:07 -0400 |
| commit | c309ff653a2be44c4d3b7cbae388bb121406725c (patch) | |
| tree | b9f25a69285e9d0fecc1ed7d9333dc07f6f5ade3 /MediaBrowser.Controller/Entities/BaseItem.cs | |
| parent | 4b3d5651e9cf8e76ba55ef1907b91ca3845f4f41 (diff) | |
Inherit ratings for episodes and seasons from series
Diffstat (limited to 'MediaBrowser.Controller/Entities/BaseItem.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/BaseItem.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index 4f34f2b67..474d14ee1 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -500,13 +500,13 @@ namespace MediaBrowser.Controller.Entities /// Gets or sets the official rating. /// </summary> /// <value>The official rating.</value> - public string OfficialRating { get; set; } + public virtual string OfficialRating { get; set; } /// <summary> /// Gets or sets the custom rating. /// </summary> /// <value>The custom rating.</value> - public string CustomRating { get; set; } + public virtual string CustomRating { get; set; } /// <summary> /// Gets or sets the language. |
