IAppConfig.cs 115 B

1234567
  1. namespace OhmGraphite
  2. {
  3. public interface IAppConfig
  4. {
  5. string this[string name] { get; }
  6. }
  7. }