Last active
December 16, 2018 11:38
-
-
Save MarcBruins/ff1c4f63f308ebfd018c0d5bde42e1b2 to your computer and use it in GitHub Desktop.
Nullable contructor parameter
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 AuthSettings | |
{ | |
public AuthSettings(Uri apiBase, string token, string username = null) | |
{ | |
ApiBase = apiBase; | |
Token = token; | |
Username = username; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment