Added IsRoot and IsVirtualFolder to DTOBaseItem

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti 2012-08-18 12:45:11 -04:00
parent 9c456c63c8
commit 6d7c29f6c8
2 changed files with 13 additions and 0 deletions

View File

@ -95,6 +95,9 @@ namespace MediaBrowser.Api
if (folder != null)
{
dto.SpecialCounts = folder.GetSpecialCounts(user);
dto.IsRoot = folder.IsRoot;
dto.IsVirtualFolder = folder.IsVirtualFolder;
}
return dto;

View File

@ -49,6 +49,16 @@ namespace MediaBrowser.Model.DTO
public bool IsFolder { get; set; }
/// <summary>
/// If the item is a Folder this will determine if it's the Root or not
/// </summary>
public bool? IsRoot { get; set; }
/// <summary>
/// If the item is a Folder this will determine if it's a VF or not
/// </summary>
public bool? IsVirtualFolder { get; set; }
public Guid? ParentId { get; set; }
public string Type { get; set; }