Skip to content

Commit

Permalink
Add annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
oleveloper committed Jan 16, 2022
1 parent e4a6bb0 commit fe68b58
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
package com.flab.studygroup.web.dto;

import lombok.Getter;
import lombok.NoArgsConstructor;

@Getter
@NoArgsConstructor
public class GroupCreateRequestDto {
private Long id;
private String name;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
package com.flab.studygroup.web.dto;

import lombok.Getter;
import lombok.NoArgsConstructor;

@Getter
@NoArgsConstructor
public class UserCreateRequestDto {
private Long id;
private String name;
Expand Down

0 comments on commit fe68b58

Please sign in to comment.