Skip to content

Instantly share code, notes, and snippets.

@kivancbakdi
Created May 31, 2018 13:28
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/d20de4c25791aec483b2755987e08ac8 to your computer and use it in GitHub Desktop.
Save kivancbakdi/d20de4c25791aec483b2755987e08ac8 to your computer and use it in GitHub Desktop.
public class Mail
{
public Mail(string to, string content)
{
this.To = to;
this.Content = content;
}
public string To { get; set; }
public string Content { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment