Fakultas Ilmu Komputer UI

Skip to content
Snippets Groups Projects
Commit bc8b9336 authored by riorio805's avatar riorio805
Browse files

Create AuthResponse DTO to standardize between success and failed response

parent 260d989e
No related branches found
No related tags found
1 merge request!1Login registration
package com.safetypin.authentication.dto;
import lombok.*;
@Data
@Getter
@Setter
@AllArgsConstructor
public class AuthResponse {
private boolean success;
private String message;
private Object data;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment