10 lines
200 B
C#

using FileShare_Services.Core;
namespace FileShare_Services.Services.QrCode
{
public interface IQrCodeService
{
Task<object?> GenerateQrCodeAsync(ServiceEndpointContext ctx);
}
}