mirror of
https://github.com/Shchoholiev/shopping-assistant-web-client.git
synced 2025-04-03 16:19:48 +00:00
10 lines
212 B
C#
10 lines
212 B
C#
namespace ShoppingAssistantWebClient.Web.Models.Identity
|
|
{
|
|
public class TokensModel
|
|
{
|
|
public string AccessToken { get; set; }
|
|
|
|
public string RefreshToken { get; set; }
|
|
}
|
|
}
|