mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 05:57:20 -04:00
Added back CustomPin (for now)
This commit is contained in:
parent
a7b0dd1534
commit
7ad612bb4b
2 changed files with 5 additions and 0 deletions
|
@ -117,6 +117,10 @@ namespace MediaBrowser.Controller.Xml
|
|||
item.CustomRating = reader.ReadElementContentAsString();
|
||||
break;
|
||||
|
||||
case "CustomPin":
|
||||
item.CustomPin = reader.ReadElementContentAsString();
|
||||
break;
|
||||
|
||||
case "Runtime":
|
||||
case "RunningTime":
|
||||
{
|
||||
|
|
|
@ -30,6 +30,7 @@ namespace MediaBrowser.Model.Entities
|
|||
public string OfficialRating { get; set; }
|
||||
|
||||
public string CustomRating { get; set; }
|
||||
public string CustomPin { get; set; }
|
||||
|
||||
public string Language { get; set; }
|
||||
public string Overview { get; set; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue