@using MP.AppAuth.Models
@inject IJSRuntime JSRuntime
@code {
[Parameter]
public AnagraficaOperatori CurrItem { get; set; }
protected string qrId
{
get => $"qrCodeImg_{CurrItem.MatrOpr}";
}
[Parameter]
public string BaseUrl { get; set; }
[Parameter]
public string Environment { get; set; }
protected string rawCode
{
get
{
string answ = "";
if (CurrItem != null)
{
answ = $"{BaseUrl}MatrOpr={CurrItem.MatrOpr}&UserAuthKey={CurrItem.AuthKey}";
}
return answ;
}
}
}