using System; namespace Abp.Configuration { /// /// Defines scope of a setting. /// [Flags] public enum SettingScopes { /// /// Represents a setting that can be configured/changed for the application level. /// Application = 1, /// /// Represents a setting that can be configured/changed for each Tenant. /// This is reserved /// Tenant = 2, /// /// Represents a setting that can be configured/changed for each User. /// User = 4, /// /// Represents a setting that can be configured/changed for all levels /// All = Application | Tenant | User } }