using System; using System.Collections.Generic; using StabilityMatrix.Core.Models; using StabilityMatrix.Core.Models.FileInterfaces; using StabilityMatrix.Core.Services; namespace StabilityMatrix.Avalonia.DesignData; public class MockTrackedDownloadService : ITrackedDownloadService { /// public IEnumerable Downloads => Array.Empty(); /// public event EventHandler? DownloadAdded; /// public TrackedDownload NewDownload(Uri downloadUrl, FilePath downloadPath) { throw new NotImplementedException(); } }