Skip to content

Commit

Permalink
Feat: TokenResponseDTO
Browse files Browse the repository at this point in the history
  • Loading branch information
J-neat committed Aug 16, 2024
1 parent cf3cc58 commit ddbe5f0
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.example.locavel.web.dto.TokenDTO;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@AllArgsConstructor
@NoArgsConstructor
public class TokenResponseDTO {

private String accessToken;
private String refreshToken;
}

0 comments on commit ddbe5f0

Please sign in to comment.