From 00c22a34546ee426cc7097953eb6b1c3443f946b Mon Sep 17 00:00:00 2001 From: LukePulverenti Luke Pulverenti luke pulverenti Date: Wed, 1 Aug 2012 13:20:22 -0400 Subject: Added ParentLogoItemId to indicate what parent item has a logo --- MediaBrowser.Model/Entities/ApiBaseItem.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'MediaBrowser.Model/Entities') diff --git a/MediaBrowser.Model/Entities/ApiBaseItem.cs b/MediaBrowser.Model/Entities/ApiBaseItem.cs index 341b1c77f..0ec9ed7c6 100644 --- a/MediaBrowser.Model/Entities/ApiBaseItem.cs +++ b/MediaBrowser.Model/Entities/ApiBaseItem.cs @@ -26,7 +26,7 @@ namespace MediaBrowser.Model.Entities public bool IsFolder { get; set; } - public Guid ParentId { get; set; } + public Guid? ParentId { get; set; } public string Type { get; set; } @@ -39,5 +39,10 @@ namespace MediaBrowser.Model.Entities { return Type.Equals(type, StringComparison.OrdinalIgnoreCase); } + + /// + /// If the item does not have a logo, this will hold the Id of the Parent that has one. + /// + public Guid? ParentLogoItemId { get; set; } } } -- cgit v1.2.3