2026-05-22 14:29:22 +08:00
|
|
|
namespace FileShare_Services.Core
|
2026-05-22 11:18:47 +08:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 文件流响应 —— 管道检测到此类型时将返回原始文件而非 JSON。
|
|
|
|
|
/// </summary>
|
|
|
|
|
public sealed record FileStreamResponse(
|
|
|
|
|
string FilePath,
|
|
|
|
|
string FileName,
|
|
|
|
|
string ContentType,
|
|
|
|
|
DateTime LastModified);
|
|
|
|
|
}
|