Skip to content

Commit

Permalink
Merge pull request #42 from SWM-SMART/feat/#40
Browse files Browse the repository at this point in the history
keywordsBodyDto 추가
  • Loading branch information
noparamin authored Nov 9, 2023
2 parents 1ee598e + 8c2ed36 commit fded865
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/main/java/com/smart/watchboard/dto/KeywordsBodyDto.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
package com.smart.watchboard.dto;

import lombok.Getter;
import lombok.Setter;

import java.util.List;

@Getter
@Setter
public class KeywordsBodyDto {
private List<String> keywords;

}

0 comments on commit fded865

Please sign in to comment.