diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-07-10 11:44:53 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-07-10 11:44:53 -0400 |
| commit | de635fe22c935acc238201b312eed1db2ccb46cd (patch) | |
| tree | ad28ef93ccb850c207e3f133b995657b38b73ce8 /MediaBrowser.Controller/Entities/Book.cs | |
| parent | efebac4d6b0247d0be5faa22cb8857f04af39ade (diff) | |
add faster access to series sort name
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 9d35c86d2..2ca56bc70 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; |
