Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.62 KB | None | 0 0
  1. //----------------------------------------------------
  2. // Copyright 2017 Epic Systems Corporation
  3. //----------------------------------------------------
  4.  
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10.  
  11. namespace KuiperAPIs
  12. {
  13.     class UserAuth
  14.     {
  15.         public UserAuth(string grant_type, string username, string password)
  16.         {
  17.             this.grant_type = grant_type;
  18.             this.username = username;
  19.             this.password = password;
  20.         }
  21.  
  22.  
  23.         public string grant_type { get; set; }
  24.         public string username { get; set; }
  25.         public string password { get; set; }
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement