12 lines
324 B
C#
12 lines
324 B
C#
namespace FileShare_Services.Core
|
|
{
|
|
/// <summary>
|
|
/// 文件流响应 —— 管道检测到此类型时将返回原始文件而非 JSON。
|
|
/// </summary>
|
|
public sealed record FileStreamResponse(
|
|
string FilePath,
|
|
string FileName,
|
|
string ContentType,
|
|
DateTime LastModified);
|
|
}
|