10 lines
198 B
C#
10 lines
198 B
C#
|
|
using Avalonia_Services.Core;
|
||
|
|
|
||
|
|
namespace Avalonia_Services.Services.QrCode
|
||
|
|
{
|
||
|
|
public interface IQrCodeService
|
||
|
|
{
|
||
|
|
Task<object?> GenerateQrCodeAsync(ServiceEndpointContext ctx);
|
||
|
|
}
|
||
|
|
}
|