diff --git a/src/main/java/com/safetypin/authentication/dto/AuthResponse.java b/src/main/java/com/safetypin/authentication/dto/AuthResponse.java new file mode 100644 index 0000000000000000000000000000000000000000..a29962ff41457e80c4adbbb6f198b35b121751b4 --- /dev/null +++ b/src/main/java/com/safetypin/authentication/dto/AuthResponse.java @@ -0,0 +1,13 @@ +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