🐛 Fix file reanalysis service didn't got configured

This commit is contained in:
2026-01-14 22:19:43 +08:00
parent 2daf8f5d77
commit 68d0881e34
4 changed files with 43 additions and 25 deletions

View File

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