This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.

13 lines
275 B
C#

using System.Collections.Generic;
using Oqtane.Models;
namespace Oqtane.Modules
{
public interface ISitemap
{
// You Must Set The "ServerManagerType" In Your IModule Interface
List<Sitemap> GetUrls(string alias, string path, Module module);
}
}