Files
blazor-saas-hrm/Infrastructure/Authentication/Identity/TokenProvider.cs
T
2026-07-21 14:22:06 +07:00

8 lines
181 B
C#

namespace Indotalent.Infrastructure.Authentication.Identity;
public class TokenProvider
{
public string? Token { get; set; }
public string? RefreshToken { get; set; }
}