-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
3d4c268
commit ccc4d4c
Showing
5 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
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
5 changes: 5 additions & 0 deletions
5
src/main/java/org/bssm/attachit/domain/attachment/domain/type/PostType.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,5 @@ | ||
package org.bssm.attachit.domain.attachment.domain.type; | ||
|
||
public enum PostType { | ||
FILE, TEXT | ||
} |
6 changes: 6 additions & 0 deletions
6
...a/org/bssm/attachit/domain/attachment/presentation/dto/request/PostAttachmentRequest.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 |
---|---|---|
@@ -1,8 +1,14 @@ | ||
package org.bssm.attachit.domain.attachment.presentation.dto.request; | ||
|
||
import lombok.Getter; | ||
import org.bssm.attachit.domain.attachment.domain.type.PostType; | ||
|
||
@Getter | ||
public class PostAttachmentRequest { | ||
private String content; | ||
private Long colorCode; | ||
private Long zIndex; | ||
private PostType postType; | ||
private String xPosition; | ||
private String yPosition; | ||
} |
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
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