11 lines
339 B
C#
11 lines
339 B
C#
|
namespace Geekbot.net.WebApi.Controllers.Callback
|
||
|
{
|
||
|
public class CallbackTokenResponseDto
|
||
|
{
|
||
|
public string access_token { get; set; }
|
||
|
public string token_type { get; set; }
|
||
|
public int expires_in { get; set; }
|
||
|
public string refresh_token { get; set; }
|
||
|
public string scope { get; set; }
|
||
|
}
|
||
|
}
|