feat: finalize core modules and gateway
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
namespace TakeoutSaaS.Application.Storage.Contracts;
|
||||
|
||||
/// <summary>
|
||||
/// 上传完成后的返回模型。
|
||||
/// </summary>
|
||||
public sealed class FileUploadResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 访问 URL(已包含签名)。
|
||||
/// </summary>
|
||||
public string Url { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 文件名。
|
||||
/// </summary>
|
||||
public string FileName { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 文件大小。
|
||||
/// </summary>
|
||||
public long FileSize { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user