Files
blazor-oms/Infrastructure/Authentication/Identity/TokenProvider.cs
T
2026-07-21 13:38:38 +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; }
}