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