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.
19 lines
400 B
19 lines
400 B
2 years ago
|
namespace Znyc.CloudCar.Model.Dtos.Auth
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 百度token
|
||
|
/// </summary>
|
||
|
public class BaiduAccessTokenOutput
|
||
|
{
|
||
|
public string refresh_token { get; set; }
|
||
|
|
||
|
public string expires_in { get; set; }
|
||
|
|
||
|
public string session_key { get; set; }
|
||
|
|
||
|
public string access_token { get; set; }
|
||
|
|
||
|
public string scope { get; set; }
|
||
|
}
|
||
|
}
|