Skip to content

Instantly share code, notes, and snippets.

@sumitkharche
Created January 6, 2020 18:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sumitkharche/4c3d3d1185e9ca8eb3f2555060a687a8 to your computer and use it in GitHub Desktop.
Save sumitkharche/4c3d3d1185e9ca8eb3f2555060a687a8 to your computer and use it in GitHub Desktop.
StudentDTO class
namespace automapper_sample
{
public class StudentDTO
{
public string Name { get; set; }
public int Age { get; set; }
public string City { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment