namespace GermanApp.Application.DTOs.Auth; /// /// DTO for refresh token response. /// public record RefreshTokenResponse { public string Token { get; init; } = string.Empty; public string RefreshToken { get; init; } = string.Empty; public DateTime ExpiresAt { get; init; } }