17 lines
469 B
C#
17 lines
469 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; }
|
|
public string instanceId { get; set; }
|
|
public int? pinCode { get; set; }
|
|
}
|
|
}
|