7 lines
103 B
C#
7 lines
103 B
C#
namespace KitsuneCafe.SOAP
|
|
{
|
|
public interface IEvent<T>
|
|
{
|
|
void Raise(T value);
|
|
}
|
|
}
|