Added ParentLogoItemId to indicate what parent item has a logo

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-08-01 13:20:22 -04:00
parent a7bead51b2
commit 00c22a3454
2 changed files with 32 additions and 2 deletions

View File

@@ -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; }
}
}