Skip to content

Commit

Permalink
✨ FEAT. Webhook 요청 응답 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
junhaa committed May 7, 2024
1 parent 4285c6c commit 9804987
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package fairytale.tbd.domain.faceSwap.web.dto;

import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

public class WebhookRequestDTO {
@Getter
@Setter
@ToString
public static class RequestDTO{
private String signature;
private String dataEncrypt;
private String timestamp;
private String nonce;

}
}

0 comments on commit 9804987

Please sign in to comment.