This commit is contained in:
2026-08-31 14:42:22 +08:00
72 changed files with 2479 additions and 168 deletions
@@ -0,0 +1,10 @@
namespace FileService.Application.UploadFile
{
/// <summary>
/// 文件下载内容:流 + 内容类型 + 文件名。
/// </summary>
public sealed record FileDownload(
Stream Content,
string ContentType,
string FileName);
}