diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-07-10 11:49:18 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-10 11:49:18 -0400 |
| commit | 1b088eeb9a5da070efce6bd9393c7408505151ec (patch) | |
| tree | 62414105e725c3fc22d1a7da38b2bb63ef9695d4 /MediaBrowser.Controller/Entities/Book.cs | |
| parent | 6b89a21c25fb7ff26817d3db8b819ee4882d5d01 (diff) | |
| parent | de635fe22c935acc238201b312eed1db2ccb46cd (diff) | |
Merge pull request #1934 from MediaBrowser/dev
Dev
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 9d35c86d25..2ca56bc706 100644 --- a/MediaBrowser.Controller/Entities/Book.cs +++ b/MediaBrowser.Controller/Entities/Book.cs @@ -22,7 +22,13 @@ namespace MediaBrowser.Controller.Entities public string SeriesName { get; set; } [IgnoreDataMember] public Guid? SeriesId { get; set; } + [IgnoreDataMember] + public string SeriesSortName { get; set; } + public string FindSeriesSortName() + { + return SeriesSortName; + } public string FindSeriesName() { return SeriesName; |
