aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/ApiBaseItem.cs
diff options
context:
space:
mode:
authorebr11 Eric Reed spam <ebr11 Eric Reed spam@reedsplace.com>2012-08-01 23:15:11 -0400
committerebr11 Eric Reed spam <ebr11 Eric Reed spam@reedsplace.com>2012-08-01 23:15:11 -0400
commit51ce69d9dbd0f2acf44100de4c021eec2d841d89 (patch)
treeb256f22f5e426874602d88739bc04daa73356202 /MediaBrowser.Model/Entities/ApiBaseItem.cs
parent6e8bfb6d9b34e8aad876bdb21907ca686741e7cb (diff)
parent80fd8d015626cbb5ed9ea8678149b13a4a1272f4 (diff)
Merge
Diffstat (limited to 'MediaBrowser.Model/Entities/ApiBaseItem.cs')
-rw-r--r--MediaBrowser.Model/Entities/ApiBaseItem.cs7
1 files changed, 6 insertions, 1 deletions
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);
}
+
+ /// <summary>
+ /// 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; }
}
}