using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace FlexJobApi.Core.Models.ElectronSignServer.Auths
|
{
|
public class IdentityModelTokenCacheItem
|
{
|
public string AccessToken { get; set; }
|
|
public int ExpiresIn { get; set; }
|
|
public DateTime CreationTime { get; set; }
|
|
public string RefreshToken { get; set; }
|
}
|
}
|