Guest User

Untitled

a guest
Dec 16th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public class AuthSettings
  2. {
  3. public AuthSettings(Uri apiBase, string token, string username = null)
  4. {
  5. ApiBase = apiBase;
  6. Token = token;
  7. Username = username;
  8. }
  9.  
  10. public Uri ApiBase { get; }
  11. public string Token { get; }
  12. public string Username { get; }
  13. }
Add Comment
Please, Sign In to add comment