mirror of https://github.com/abpframework/abp.git
11 changed files with 62 additions and 29 deletions
@ -0,0 +1,26 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using Volo.Abp.Application.Services; |
|||
using Volo.Abp.Aspects; |
|||
using Volo.Abp.DependencyInjection; |
|||
|
|||
namespace Volo.Abp.Http.Modeling |
|||
{ |
|||
public class ApiDescriptionModelOptions |
|||
{ |
|||
public HashSet<Type> IgnoredInterfaces { get; } |
|||
|
|||
public ApiDescriptionModelOptions() |
|||
{ |
|||
IgnoredInterfaces = new HashSet<Type> |
|||
{ |
|||
typeof(IApplicationService), |
|||
typeof(IRemoteService), |
|||
typeof(ITransientDependency), |
|||
typeof(ISingletonDependency), |
|||
typeof(IDisposable), |
|||
typeof(IAvoidDuplicateCrossCuttingConcerns) |
|||
}; |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue