Module.EventRegistration/Client/Interop.cs
2025-04-07 11:47:28 +02:00

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;
}
}
}