7 lines
111 B
C#
7 lines
111 B
C#
namespace EveOPreview
|
|
{
|
|
public interface IPresenter<in TArgument>
|
|
{
|
|
void Run(TArgument args);
|
|
}
|
|
} |