17 lines
468 B
C#
17 lines
468 B
C#
using System;
|
|
|
|
namespace ManagerService.DTOs
|
|
{
|
|
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 string pinCode { get; set; }
|
|
}
|
|
}
|