0
0
mirror of https://github.com/Shchoholiev/shopping-assistant-web-client.git synced 2025-06-29 18:21:09 +00:00
shopping-assistant-web-client/ShoppingAssistantWebClient.Web/Models/Identity/TokensModel.cs
2023-10-15 15:18:09 +00:00

10 lines
212 B
C#

namespace ShoppingAssistantWebClient.Web.Models.Identity
{
public class TokensModel
{
public string AccessToken { get; set; }
public string RefreshToken { get; set; }
}
}