using System;
using EmbedIO.Utilities;
namespace EmbedIO
{
///
/// Represents an object that contains a collection of interfaces.
///
public interface IWebModuleContainer : IDisposable
{
///
/// Gets the modules.
///
///
/// The modules.
///
IComponentCollection Modules { get; }
}
}