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

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