Initial Commit

This commit is contained in:
2025-10-14 19:01:57 +04:00
commit 5774f54613
71 changed files with 8893 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.AdminModules
{
public class Interop
{
private readonly IJSRuntime _jsRuntime;
public Interop(IJSRuntime jsRuntime)
{
_jsRuntime = jsRuntime;
}
}
}