diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-26 19:23:58 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-12-26 19:23:58 -0500 |
| commit | 44c0eba39d277a83712c7c20a5483e1530db3e41 (patch) | |
| tree | a2188572b744d04b853c8463052e3525238cd12e /MediaBrowser.Controller/Entities/Book.cs | |
| parent | 14720063bc3344791fe2b8028bc50fc83dacbdb5 (diff) | |
abstract preferred metadata language per item
Diffstat (limited to 'MediaBrowser.Controller/Entities/Book.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Book.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/Book.cs b/MediaBrowser.Controller/Entities/Book.cs index b51e93690..e4e1ab39c 100644 --- a/MediaBrowser.Controller/Entities/Book.cs +++ b/MediaBrowser.Controller/Entities/Book.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; namespace MediaBrowser.Controller.Entities { - public class Book : BaseItem, IHasTags + public class Book : BaseItem, IHasTags, IHasPreferredMetadataLanguage { public override string MediaType { @@ -12,6 +12,7 @@ namespace MediaBrowser.Controller.Entities return Model.Entities.MediaType.Book; } } + /// <summary> /// Gets or sets the tags. /// </summary> @@ -20,6 +21,8 @@ namespace MediaBrowser.Controller.Entities public string SeriesName { get; set; } + public string PreferredMetadataLanguage { get; set; } + /// <summary> /// /// </summary> |
