mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-04 16:49:36 +00:00
8 lines
182 B
C#
8 lines
182 B
C#
namespace ShoppingAssistantApi.Application.Models.Identity;
|
|
|
|
public class TokensModel
|
|
{
|
|
public string AccessToken { get; set; }
|
|
|
|
public string RefreshToken { get; set; }
|
|
} |