aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Plugins/IHasWebPages.cs
blob: 5bda7e65e426aaba7ad231bc211a071b0fe2d9d5 (plain)
1
2
3
4
5
6
7
8
9
using System.Collections.Generic;

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