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