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