Entwicklung_BLAZOR/InterneDLLs/LambertzEssentials/ISingelton.cs
2025-08-23 19:30:21 +02:00

15 lines
290 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace De.Lambertz.Essentials
{
public interface ISingelton
{
void ManagedReset(string userName);
//Kills the Singelton and frees resources
void ManagedKill();
}
}