File reanalysis now validate the thumbnail / compressed

This commit is contained in:
2026-01-14 00:06:28 +08:00
parent ab70816a07
commit a4c2892a66
3 changed files with 150 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
namespace DysonNetwork.Drive.Storage;
public class FileReanalysisOptions
{
public bool Enabled { get; set; } = true;
public bool ValidateCompression { get; set; } = true;
public bool ValidateThumbnails { get; set; } = true;
}