mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-24 11:05:08 +01:00
Removed vf collection type
This commit is contained in:
parent
81c16c305b
commit
42a2835633
@@ -83,11 +83,6 @@ namespace MediaBrowser.Model.DTO
|
||||
public IEnumerable<DTOBaseItem> LocalTrailers { get; set; }
|
||||
public int LocalTrailerCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Holds the virtual folder collection type
|
||||
/// </summary>
|
||||
public string VfType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// User data for this item based on the user it's being requested for
|
||||
/// </summary>
|
||||
|
||||
@@ -6,29 +6,6 @@ namespace MediaBrowser.Model.Entities
|
||||
{
|
||||
public abstract class BaseItem : BaseEntity, IHasProviderIds
|
||||
{
|
||||
/// <summary>
|
||||
/// Goes up the tree to find the virtual folder parent
|
||||
/// </summary>
|
||||
public VirtualFolder VirtualFolder
|
||||
{
|
||||
get
|
||||
{
|
||||
var vf = this as VirtualFolder;
|
||||
|
||||
if (vf != null)
|
||||
{
|
||||
return vf;
|
||||
}
|
||||
|
||||
if (Parent != null)
|
||||
{
|
||||
return Parent.VirtualFolder;
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public string SortName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
|
||||
namespace MediaBrowser.Model.Entities
|
||||
{
|
||||
public class VirtualFolder : Folder
|
||||
{
|
||||
public string CollectionType { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -48,7 +48,6 @@
|
||||
<Compile Include="Entities\Person.cs" />
|
||||
<Compile Include="Entities\Studio.cs" />
|
||||
<Compile Include="Entities\Video.cs" />
|
||||
<Compile Include="Entities\VirtualFolder.cs" />
|
||||
<Compile Include="Entities\Year.cs" />
|
||||
<Compile Include="Plugins\BasePluginConfiguration.cs" />
|
||||
<Compile Include="DTO\PluginInfo.cs" />
|
||||
|
||||
Reference in New Issue
Block a user