| 123456789101112131415161718 |
- namespace Abp.Configuration
- {
- /// <summary>
- /// Represents value of a setting.
- /// </summary>
- public interface ISettingValue
- {
- /// <summary>
- /// Unique name of the setting.
- /// </summary>
- string Name { get; }
-
- /// <summary>
- /// Value of the setting.
- /// </summary>
- string Value { get; }
- }
- }
|