using System.Collections.Generic; using System.IO; using TrashLib.Config.Services; namespace Trash.Config; public interface IConfigurationLoader where T : IServiceConfiguration { IEnumerable Load(string propertyName, string configSection); IEnumerable LoadFromStream(TextReader stream, string configSection); IEnumerable LoadMany(IEnumerable configFiles, string configSection); }