using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web.Routing; namespace GreenTree.Nachtragsmanagement.Web.Framework.Mvc.Routes { /// /// Route publisher /// public interface IRoutePublisher { /// /// Register routes /// /// Routes void RegisterRoutes(RouteCollection routes); } }