mirror of https://github.com/abpframework/abp
parent
ac0e488ecb
commit
9d5d27a860
@ -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