Added a VirtualFolder entity, a resolver, and a CollectionType property.

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-08-18 15:38:27 -04:00
parent a201eb060b
commit a508a997d9
18 changed files with 128 additions and 19 deletions

View File

@@ -0,0 +1,8 @@

namespace MediaBrowser.Model.Entities
{
public class VirtualFolder : Folder
{
public string CollectionType { get; set; }
}
}