You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
320 B

namespace Win_in.Sfs.Scp.WebApi.XmlHost
{
public class BaererToken
{
public string access_token { get; set; }
public long expires_in { get; set; }
public string token_type { get; set; }
public string refresh_token { get; set; }
public string scope { get; set; }
}
}