Skip to content

Commit

Permalink
feat(BE) : 기프티콘 삭제를 위한 DTO 추가(#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktykty0722 committed Feb 22, 2023
1 parent 304b09d commit a6ed88b
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package com.amatta.amatta_server.gifticon.dto;

import lombok.Getter;

import javax.validation.constraints.NotNull;

@Getter
public class GifticonDeleteDto {
@NotNull(message = "사용할 기프티콘의 아이디가 필요합니다")
private long gifticonId;
}

0 comments on commit a6ed88b

Please sign in to comment.