IAppConfig.cs 143 B

12345678
  1. namespace OhmGraphite
  2. {
  3. public interface IAppConfig
  4. {
  5. string this[string name] { get; }
  6. string[] GetKeys();
  7. }
  8. }