fasdfsa's picture
init
fab29d7
namespace VersOne.Epub.Environment.Implementation
{
internal class EnvironmentDependencies : IEnvironmentDependencies
{
public EnvironmentDependencies()
{
FileSystem = new FileSystem();
ContentDownloader = new ContentDownloader();
}
public IFileSystem FileSystem { get; }
public IContentDownloader ContentDownloader { get; }
}
}