add: Scan unused and not existed image command.

This commit is contained in:
2024-08-25 14:52:18 +08:00
parent 9111affeec
commit 6ac162a124
5 changed files with 123 additions and 2 deletions

View File

@@ -0,0 +1,3 @@
namespace YaeBlog.Core.Models;
public record struct ImageScanResult(List<FileInfo> UnusedImages, List<FileInfo> NotFoundImages);