Skip to content

Instantly share code, notes, and snippets.

@kivancbakdi
Created May 31, 2018 13:27
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 kivancbakdi/87f66c7e26a3e91fdea43d572d94dccd to your computer and use it in GitHub Desktop.
Save kivancbakdi/87f66c7e26a3e91fdea43d572d94dccd to your computer and use it in GitHub Desktop.
public class EmployeeModel
{
public EmployeeModel(string name, string mailAddress)
{
this.Name = name;
this.MailAddress = mailAddress;
}
public string Name { get; set; }
public string MailAddress { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment