using System; using System.Collections.Generic; using System.IO; using System.Threading; using System.Threading.Tasks; namespace PettingZoo.Tapeti.AssemblyLoader { public interface IPackageAssemblies { Task> GetAssemblies(IProgress progress, CancellationToken cancellationToken); } public interface IPackageAssembly { Stream GetStream(); } }