namespace MessengerApi.Configuration.Sources { public interface IConfigurationSource { bool HasKey(string key); T GetValue(string key); } }