Created
December 11, 2019 21:37
-
-
Save 2garryn/5fbd62fe2fe947b8520c53eee7273468 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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