Files
blazor-scm/Infrastructure/Authentication/Identity/TokenProvider.cs
T
2026-07-21 14:28:43 +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; }
}