7 lines
No EOL
151 B
C#
7 lines
No EOL
151 B
C#
namespace PhoenixLib.Events
|
|
{
|
|
public interface IConverter<in TSource, out TDestination>
|
|
{
|
|
TDestination Convert(TSource source);
|
|
}
|
|
} |