-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
이재혁
authored
Jan 30, 2024
1 parent
23da69a
commit a9134cf
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
src/main/java/com/api/ttoklip/global/success/Messaage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package com.api.ttoklip.global.success; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.ToString; | ||
|
||
@ToString | ||
@Data | ||
public class Messaage { | ||
|
||
@Schema(type = "string", example = "메시지 문구를 출력합니다.", description = "메시지 입니다.") | ||
private String message; | ||
|
||
public Messaage() { | ||
} | ||
|
||
@Builder | ||
public Messaage(String message) { | ||
this.message = message; | ||
} | ||
|
||
} |