using System; namespace Abp.Application.Features { /// /// Scopes of a . /// [Flags] public enum FeatureScopes { /// /// This can be enabled/disabled per edition. /// Edition = 1, /// /// This Feature can be enabled/disabled per tenant. /// Tenant = 2, /// /// This can be enabled/disabled per tenant and edition. /// All = 3 } }