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