Skip to content

Instantly share code, notes, and snippets.

View PashaPash's full-sized avatar
🏠
Working from home

Pavel Pachobut PashaPash

🏠
Working from home
View GitHub Profile
@PashaPash
PashaPash / AutoMapper.cs
Created December 25, 2024 01:22 — forked from lbargaoanu/AutoMapper.cs
Sample AM
using AutoMapper;
interface IDestination
{
int SomeProp { get; }
}
class Destination : IDestination
{
public int SomeProp { get; set; }