15 lines
290 B
C#
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();
|
|
}
|
|
}
|