Files
Thanakarn Klangkasame d266463c9f Fix Redundance Reference
2025-10-03 10:33:55 +07:00

6 lines
169 B
C#

namespace AMREZ.EOP.Abstractions.Applications.UseCases.Payments.SlipVerification.QrDecode;
public interface IQrDecoder
{
string? TryDecodeText(byte[] imageBytes);
}