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