diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-07-04 16:11:30 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-07-04 16:11:30 -0400 |
| commit | 26036837dd0c865a6ac3742717dc3d77ec33cf8e (patch) | |
| tree | 72ddcaa78298ac96e6a48533db772b3b8bbd4074 /MediaBrowser.Controller/Entities/Book.cs | |
| parent | 46dc02705aff7a76a622217b4cb795a7dba0bafa (diff) | |
denormalize series fields
Diffstat (limited to 'MediaBrowser.Controller/Entities/Book.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Book.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/Book.cs b/MediaBrowser.Controller/Entities/Book.cs index 96fad670e..76f54edea 100644 --- a/MediaBrowser.Controller/Entities/Book.cs +++ b/MediaBrowser.Controller/Entities/Book.cs @@ -17,8 +17,14 @@ namespace MediaBrowser.Controller.Entities } } + [IgnoreDataMember] public string SeriesName { get; set; } + public string FindSeriesName() + { + return SeriesName; + } + public override bool CanDownload() { var locationType = LocationType; |
