16 lines
287 B
C#
16 lines
287 B
C#
using Microsoft.JSInterop;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AdamGais.Module.AnmeldeTool
|
|
{
|
|
public class Interop
|
|
{
|
|
private readonly IJSRuntime _jsRuntime;
|
|
|
|
public Interop(IJSRuntime jsRuntime)
|
|
{
|
|
_jsRuntime = jsRuntime;
|
|
}
|
|
}
|
|
}
|