2020-12-16 21:35:51 +01:00

15 lines
379 B
C#

using System;
namespace MyCore.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; }
}
}