using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; namespace Syc.Abp.Application.Contracts.Options { public class AbpControllerOptions { public AbpControllerOptions() { UrlRootPathMap = new Dictionary(); DefaultRoot = "/app"; } public Dictionary UrlRootPathMap { get; set; } public string DefaultRoot { get; set; } } }