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-09-22 23:16:23 +03:00

10 lines
203 B
C#

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