jellyfin/MediaBrowser.Controller/Entities/ICollectionFolder.cs

15 lines
364 B
C#
Raw Normal View History

2014-10-12 03:46:02 +02:00
using System.Collections.Generic;
2013-02-21 02:33:05 +01:00
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// This is just a marker interface to denote top level folders
/// </summary>
public interface ICollectionFolder
{
2014-06-15 01:13:09 +02:00
string CollectionType { get; }
2014-10-12 03:46:02 +02:00
string Path { get; }
IEnumerable<string> PhysicalLocations { get; }
2013-02-21 02:33:05 +01:00
}
}