Konstantin Hintermayer f884c684e1 Add project files.
2025-04-30 15:58:45 +02:00

16 lines
305 B
C#

using Microsoft.JSInterop;
using System.Threading.Tasks;
namespace SZUAbsolventenverein.Module.EventRegistration
{
public class Interop
{
private readonly IJSRuntime _jsRuntime;
public Interop(IJSRuntime jsRuntime)
{
_jsRuntime = jsRuntime;
}
}
}