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.
19 lines
601 B
19 lines
601 B
12 months ago
|
using StabilityMatrix.Core.Models;
|
||
|
using StabilityMatrix.Core.Models.FileInterfaces;
|
||
|
using StabilityMatrix.Core.Models.Progress;
|
||
|
|
||
|
namespace StabilityMatrix.Core.Services;
|
||
|
|
||
|
public interface IMetadataImportService
|
||
|
{
|
||
12 months ago
|
Task ScanDirectoryForMissingInfo(DirectoryPath directory, IProgress<ProgressReport>? progress = null);
|
||
12 months ago
|
|
||
|
Task<ConnectedModelInfo?> GetMetadataForFile(
|
||
|
FilePath filePath,
|
||
|
IProgress<ProgressReport>? progress = null,
|
||
|
bool forceReimport = false
|
||
|
);
|
||
|
|
||
12 months ago
|
Task UpdateExistingMetadata(DirectoryPath directory, IProgress<ProgressReport>? progress = null);
|
||
12 months ago
|
}
|