Skip to content

Instantly share code, notes, and snippets.

@sumitkharche
Created January 6, 2020 18:21
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/8736da6b396007facd951f6977d57fc7 to your computer and use it in GitHub Desktop.
Save sumitkharche/8736da6b396007facd951f6977d57fc7 to your computer and use it in GitHub Desktop.
Student class
namespace automapper_sample
{
public class Student
{
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