ISettingValue.cs 389 B

123456789101112131415161718
  1. namespace Abp.Configuration
  2. {
  3. /// <summary>
  4. /// Represents value of a setting.
  5. /// </summary>
  6. public interface ISettingValue
  7. {
  8. /// <summary>
  9. /// Unique name of the setting.
  10. /// </summary>
  11. string Name { get; }
  12. /// <summary>
  13. /// Value of the setting.
  14. /// </summary>
  15. string Value { get; }
  16. }
  17. }