10 lines
266 B
C#
10 lines
266 B
C#
using QRRapidoApp.Models.DTOs;
|
|
using QRRapidoApp.Models.ViewModels;
|
|
|
|
namespace QRRapidoApp.Services
|
|
{
|
|
public interface IQRBusinessManager
|
|
{
|
|
Task<QRResponseDto> ProcessGenerationAsync(QRGenerationRequest request, UserRequesterContext context);
|
|
}
|
|
} |