namespace FileShare_Services.Services.FileLibrary { public sealed class ThumbnailStorageOptions { public string RootPath { get; set; } = Path.Combine(AppContext.BaseDirectory, "thumbnails"); public string FfmpegPath { get; set; } = Path.Combine("tools", "ffmpeg", "bin", "ffmpeg.exe"); public string FfprobePath { get; set; } = Path.Combine("tools", "ffmpeg", "bin", "ffprobe.exe"); } }