aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/ItemInfo.cs
blob: 113a7bb8ec17eade0a8eb0245541d196b09accbf (plain)
1
2
3
4
5
6
7
8
9
namespace MediaBrowser.Controller.Providers
{
    public class ItemInfo
    {
        public string Path { get; set; }

        public bool IsInMixedFolder { get; set; }
    }
}