using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using zero.Core.Api; using zero.Core.Entities; namespace zero.Core.Routing { public interface IPageUrlResolver { /// /// Get URL for a page /// Task GetUrl(IPage page); /// /// Get URL for a page /// UrlInfo GetUrl(IApplicationContext context, IPage page, IEnumerable parents); } }