SPMS_API/SPMS.Application/DTOs/Auth/TokenRefreshResponseDto.cs
seonkyu.kim 336dcf8193 feat: 토큰 갱신 및 로그아웃 API 구현 (#38)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-09 23:08:29 +09:00

16 lines
397 B
C#

using System.Text.Json.Serialization;
namespace SPMS.Application.DTOs.Auth;
public class TokenRefreshResponseDto
{
[JsonPropertyName("access_token")]
public string AccessToken { get; set; } = string.Empty;
[JsonPropertyName("refresh_token")]
public string RefreshToken { get; set; } = string.Empty;
[JsonPropertyName("expires_in")]
public int ExpiresIn { get; set; }
}