15 lines
380 B
C#
15 lines
380 B
C#
using System;
|
|
|
|
namespace Manager.Interfaces.DTO
|
|
{
|
|
public class TokenDTO
|
|
{
|
|
public string access_token { get; set; }
|
|
public string refresh_token { get; set; }
|
|
public string scope { get; set; }
|
|
public string token_type { get; set; }
|
|
public int expires_in { get; set; }
|
|
public DateTimeOffset expiration { get; set; }
|
|
}
|
|
}
|