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; }
}
}