Files
git.stella-ops.org/Mongo2Go-4.1.0/src/Mongo2Go/Helper/IMongoDbProcess.cs
2025-10-20 14:19:25 +03:00

11 lines
253 B
C#

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