10 lines
423 B
C#
10 lines
423 B
C#
|
|
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");
|
||
|
|
}
|
||
|
|
}
|