mirror of https://github.com/abpframework/abp.git
2 changed files with 51 additions and 2 deletions
@ -0,0 +1,22 @@ |
|||
using System; |
|||
|
|||
namespace Volo.Abp.Application.Services; |
|||
|
|||
[Flags] |
|||
public enum ApplicationServiceTypes : byte |
|||
{ |
|||
/// <summary>
|
|||
/// Only application services without <see cref="IntegrationServiceAttribute"/>.
|
|||
/// </summary>
|
|||
ApplicationServices = 1, |
|||
|
|||
/// <summary>
|
|||
/// Application services with <see cref="IntegrationServiceAttribute"/>.
|
|||
/// </summary>
|
|||
IntegrationServices = 2, |
|||
|
|||
/// <summary>
|
|||
/// All application services.
|
|||
/// </summary>
|
|||
All = ApplicationServices | IntegrationServices |
|||
} |
|||
Loading…
Reference in new issue