You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
901 B
37 lines
901 B
12 months ago
|
using System;
|
||
|
using System.Threading.Tasks;
|
||
|
using StabilityMatrix.Core.Models;
|
||
|
using StabilityMatrix.Core.Models.FileInterfaces;
|
||
|
using StabilityMatrix.Core.Models.Progress;
|
||
|
using StabilityMatrix.Core.Services;
|
||
|
|
||
|
namespace StabilityMatrix.Avalonia.DesignData;
|
||
|
|
||
|
public class MockMetadataImportService : IMetadataImportService
|
||
|
{
|
||
|
public Task ScanDirectoryForMissingInfo(
|
||
|
DirectoryPath directory,
|
||
|
IProgress<ProgressReport>? progress = null
|
||
|
)
|
||
|
{
|
||
|
return Task.CompletedTask;
|
||
|
}
|
||
|
|
||
|
public Task<ConnectedModelInfo?> GetMetadataForFile(
|
||
|
FilePath filePath,
|
||
|
IProgress<ProgressReport>? progress = null,
|
||
|
bool forceReimport = false
|
||
|
)
|
||
|
{
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
public Task UpdateExistingMetadata(
|
||
|
DirectoryPath directory,
|
||
|
IProgress<ProgressReport>? progress = null
|
||
|
)
|
||
|
{
|
||
|
return Task.CompletedTask;
|
||
|
}
|
||
|
}
|