Initial commit

This commit is contained in:
2026-06-04 06:24:56 +02:00
commit 282f4864c4
111 changed files with 8083 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
namespace MealPlan.Api.DTOs.Auth;
/// <summary>Token pair returned by login and refresh.</summary>
public class TokenResponseDto
{
public string AccessToken { get; set; } = string.Empty;
public string RefreshToken { get; set; } = string.Empty;
/// <summary>Access-token lifetime in seconds (clients use it to schedule silent refresh).</summary>
public int ExpiresInSeconds { get; set; }
public string TokenType { get; set; } = "Bearer";
}