namespace FileShare_Services.Services.FileLibrary
{
///
/// 缩略图存储与服务配置选项。
///
public sealed class ThumbnailStorageOptions
{
/// 缩略图文件存储根目录路径。
public string RootPath { get; set; } = Path.Combine(AppContext.BaseDirectory, "thumbnails");
/// ffmpeg 可执行文件路径。
public string FfmpegPath { get; set; } = Path.Combine("tools", "ffmpeg", "bin", "ffmpeg.exe");
/// ffprobe 可执行文件路径。
public string FfprobePath { get; set; } = Path.Combine("tools", "ffmpeg", "bin", "ffprobe.exe");
}
}