Skip to content

Instantly share code, notes, and snippets.

@mgjam
Created September 24, 2020 09:04
Show Gist options
  • Save mgjam/0204b0357965a88da4439c562b54871c to your computer and use it in GitHub Desktop.
Save mgjam/0204b0357965a88da4439c562b54871c to your computer and use it in GitHub Desktop.
class ValidEmail
{
string Email;
}
class EmailValidator
{
ValidEmail? IsEmailValid(string email);
}
class EmailProcessor
{
void ProcessEmail(ValidEmail validEmail);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment