mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 09:41:19 +00:00
15 lines
379 B
C#
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; }
|
|
}
|
|
}
|