docs: 为缩略图、最近文件相关新增类型补全中文 XML 文档注释
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
@@ -1,9 +1,17 @@
|
||||
namespace FileShare_Services.Services.FileLibrary
|
||||
{
|
||||
/// <summary>
|
||||
/// 缩略图存储与服务配置选项。
|
||||
/// </summary>
|
||||
public sealed class ThumbnailStorageOptions
|
||||
{
|
||||
/// <summary>缩略图文件存储根目录路径。</summary>
|
||||
public string RootPath { get; set; } = Path.Combine(AppContext.BaseDirectory, "thumbnails");
|
||||
|
||||
/// <summary>ffmpeg 可执行文件路径。</summary>
|
||||
public string FfmpegPath { get; set; } = Path.Combine("tools", "ffmpeg", "bin", "ffmpeg.exe");
|
||||
|
||||
/// <summary>ffprobe 可执行文件路径。</summary>
|
||||
public string FfprobePath { get; set; } = Path.Combine("tools", "ffmpeg", "bin", "ffprobe.exe");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user