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