9 lines
239 B
C#
9 lines
239 B
C#
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;
|
|
}
|