6 lines
169 B
C#
6 lines
169 B
C#
namespace AMREZ.EOP.Abstractions.Applications.UseCases.Payments.SlipVerification.QrDecode;
|
|
|
|
public interface IQrDecoder
|
|
{
|
|
string? TryDecodeText(byte[] imageBytes);
|
|
} |