using Microsoft.Extensions.Logging; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Beam.Abstractions; using Beam.Downloaders; using Beam.Models; namespace Beam.Stealth { public class StealthFragmentDownloader : UnitFragmentDownloader { public StealthFragmentDownloader(UnitDownloaderOptions options, StealthConfig config, StealthAsyncManipulator manipulator) : base(options, new StealthUnitDownloader(options, config, manipulator)) {} } }