using System.Collections.Generic;
using System.Threading.Tasks;
namespace TinaX.Systems.Configuration
{
///
/// Represents a type used to build application configuration.
///
public interface IConfigurationBuilder
{
IList Sources { get; }
///
/// Adds a new configuration source.
/// 添加配置来源
///
///
///
IConfigurationBuilder Add(IConfigurationSource source);
Task BuildAsync();
}
}