Skip to content

Instantly share code, notes, and snippets.

@2garryn
Created December 11, 2019 21:37
Show Gist options
  • Save 2garryn/5fbd62fe2fe947b8520c53eee7273468 to your computer and use it in GitHub Desktop.
Save 2garryn/5fbd62fe2fe947b8520c53eee7273468 to your computer and use it in GitHub Desktop.
public class Name
{
public Name(Optional<string> fullName, Optional<string> firstName, Optional<string> lastName)
{
FirstName = firstName;
LastName = lastName;
FullName = fullName;
}
public Optional<string> FullName {get; set;}
public Optional<string> FirstName {get; set;}
public Optional<string> LastName {get; set;}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment