2026-05-22 14:29:22 +08:00
|
|
|
namespace FileShare_Services.Services.QrCode
|
2026-05-22 11:18:47 +08:00
|
|
|
{
|
2026-05-22 14:45:07 +08:00
|
|
|
/// <summary>
|
|
|
|
|
/// 二维码生成响应,包含访问 URL 和 Base64 编码的 PNG 二维码图片。
|
|
|
|
|
/// </summary>
|
2026-05-22 11:18:47 +08:00
|
|
|
public sealed record QrCodeResponse(string Url, string QrCodeBase64);
|
|
|
|
|
}
|