8 lines
181 B
C#
8 lines
181 B
C#
namespace Indotalent.Infrastructure.Authentication.Identity;
|
|
|
|
public class TokenProvider
|
|
{
|
|
public string? Token { get; set; }
|
|
public string? RefreshToken { get; set; }
|
|
}
|