using System; using System.Collections.Generic; namespace Mongo2Go.Helper { public interface IMongoDbProcess : IDisposable { IEnumerable StandardOutput { get; } IEnumerable ErrorOutput { get; } } }