23 lines
518 B
C#
23 lines
518 B
C#
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; }
|
|
}
|
|
}
|