aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Plugins/IHasWebPages.cs
blob: 765c2d373ff5551795e52710694cb8c375035501 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma warning disable CS1591

using System.Collections.Generic;

namespace MediaBrowser.Model.Plugins
{
    public interface IHasWebPages
    {
        IEnumerable<PluginPageInfo> GetPages();
    }
}