aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities
diff options
context:
space:
mode:
authorLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-08-03 11:54:05 -0400
committerLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-08-03 11:54:05 -0400
commit2cab5712a702238369caad4172e6590a91a005aa (patch)
tree31eb279cb2037b6733e8b7ed6ab1c535096c3791 /MediaBrowser.Model/Entities
parentf61227fec0cfb9b89dca89b8fe7688d4adc8d59c (diff)
Added some api client methods, as well as logo and backdrop parents
Diffstat (limited to 'MediaBrowser.Model/Entities')
-rw-r--r--MediaBrowser.Model/Entities/ApiBaseItem.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/ApiBaseItem.cs b/MediaBrowser.Model/Entities/ApiBaseItem.cs
index 0ec9ed7c63..ff4d13c0b2 100644
--- a/MediaBrowser.Model/Entities/ApiBaseItem.cs
+++ b/MediaBrowser.Model/Entities/ApiBaseItem.cs
@@ -44,5 +44,9 @@ namespace MediaBrowser.Model.Entities
/// If the item does not have a logo, this will hold the Id of the Parent that has one.
/// </summary>
public Guid? ParentLogoItemId { get; set; }
+
+ public Guid? ParentBackdropItemId { get; set; }
+
+ public int? ParentBackdropCount { get; set; }
}
}