Skip to content

Commit

Permalink
Task 38 : Define UserResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
Rapter1990 committed Jul 2, 2024
1 parent 2e9f0f7 commit bb7597c
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package com.springboot.ratelimiter.user.payload.response;

import lombok.*;

@Getter
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class UserResponse {

private String id;
private String name;
private String email;

}

0 comments on commit bb7597c

Please sign in to comment.