9 lines
193 B
C#
9 lines
193 B
C#
|
|
namespace Bimix.UI.Shared.Interfaces;
|
||
|
|
|
||
|
|
public interface IScannerService
|
||
|
|
{
|
||
|
|
bool IsAvailable { get; }
|
||
|
|
Task<bool> RequestCameraPermissionsAsync();
|
||
|
|
Task<string?> ScanBarcodeAsync();
|
||
|
|
|
||
|
|
}
|