11 lines
266 B
C#
11 lines
266 B
C#
namespace FileService.Application.UploadFile
|
|
{
|
|
/// <summary>
|
|
/// 文件下载内容:流 + 内容类型 + 文件名。
|
|
/// </summary>
|
|
public sealed record FileDownload(
|
|
Stream Content,
|
|
string ContentType,
|
|
string FileName);
|
|
}
|