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 Task RefreshIndex()
{
return Task.CompletedTask;
}
///
public Task> GetModelsOfType(SharedFolderType type)
{
return Task.FromResult>(new List());
}
///
public void BackgroundRefreshIndex() { }
}