Skip to content

Instantly share code, notes, and snippets.

View gonace's full-sized avatar
🇺🇦
Слава Україні!

Erik Hennerfors gonace

🇺🇦
Слава Україні!
View GitHub Profile
@gonace
gonace / Mapper.cs
Last active February 15, 2023 08:56
IMapper<TFrom, TTo>
namespace Payment.System.Provider.Core.Interfaces
{
public interface IMapper<in TFrom, out TTo>
{
TTo Map(TFrom from);
}
}
namespace Payment.System.Provider.Ping.Mappers
{