using System; using System.Collections.Generic; using System.Threading.Tasks; using StabilityMatrix.Core.Models; using StabilityMatrix.Core.Models.Database; using StabilityMatrix.Core.Services; namespace StabilityMatrix.Avalonia.DesignData; public class MockModelIndexService : IModelIndexService { /// public Dictionary> ModelIndex { get; } = new(); /// public Task RefreshIndex() { return Task.CompletedTask; } /// public IEnumerable GetFromModelIndex(SharedFolderType types) { return Array.Empty(); } /// public Task> GetModelsOfType(SharedFolderType type) { return Task.FromResult>(new List()); } /// public void BackgroundRefreshIndex() { } }