8 lines
253 B
C#
Raw Permalink Normal View History

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