1 2 3 4 5
namespace Notepad.Infrastructure.Core { public interface IMapper<Input, Output> { Output MapFrom(Input item); } }