FeatureScopes.cs 629 B

1234567891011121314151617181920212223242526
  1. using System;
  2. namespace Abp.Application.Features
  3. {
  4. /// <summary>
  5. /// Scopes of a <see cref="Feature"/>.
  6. /// </summary>
  7. [Flags]
  8. public enum FeatureScopes
  9. {
  10. /// <summary>
  11. /// This <see cref="Feature"/> can be enabled/disabled per edition.
  12. /// </summary>
  13. Edition = 1,
  14. /// <summary>
  15. /// This Feature<see cref="Feature"/> can be enabled/disabled per tenant.
  16. /// </summary>
  17. Tenant = 2,
  18. /// <summary>
  19. /// This <see cref="Feature"/> can be enabled/disabled per tenant and edition.
  20. /// </summary>
  21. All = 3
  22. }
  23. }