Add project files.

This commit is contained in:
Konstantin Hintermayer
2025-04-30 15:58:45 +02:00
parent 4d08d59c93
commit f884c684e1
41 changed files with 1770 additions and 0 deletions

15
Client/Interop.cs Normal file
View File

@ -0,0 +1,15 @@
using Microsoft.JSInterop;
using System.Threading.Tasks;
namespace SZUAbsolventenverein.Module.EventRegistration
{
public class Interop
{
private readonly IJSRuntime _jsRuntime;
public Interop(IJSRuntime jsRuntime)
{
_jsRuntime = jsRuntime;
}
}
}