23 lines
518 B
C#
Raw Normal View History

2025-06-04 09:42:48 +08:00
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<Type, string>();
DefaultRoot = "/app";
}
public Dictionary<Type,string> UrlRootPathMap { get; set; }
public string DefaultRoot { get; set; }
}
}