You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
296 B
Java
5 lines
296 B
Java
package com.yau.digitalrmb.security.interfaces;
|
|
import lombok.AllArgsConstructor; import lombok.Getter;
|
|
@Getter @AllArgsConstructor
|
|
public class SessionResponse { private final String accessToken; private final String refreshToken; private final String tokenType; private final long expiresIn; }
|