// // Copyright (c) PlaceholderCompany. All rights reserved. // #pragma warning disable CS1591 using global::System.Collections.Generic; namespace MediaBrowser.Model.Plugins; public interface IHasWebPages { /// /// Gets the plugin pages. /// /// The plugin pages. IEnumerable GetPages(); }