-
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.
- LabelRequestDto - create, update 요청 시 사용
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
BE/src/main/java/com/codesquad/issuetracker/ragdoll/dto/LabelRequestDto.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,34 @@ | ||
package com.codesquad.issuetracker.ragdoll.dto; | ||
|
||
public class LabelRequestDto { | ||
|
||
private String labelName; | ||
|
||
private String description; | ||
|
||
private String hexCode; | ||
|
||
public String getLabelName() { | ||
return labelName; | ||
} | ||
|
||
public void setLabelName(String labelName) { | ||
this.labelName = labelName; | ||
} | ||
|
||
public String getDescription() { | ||
return description; | ||
} | ||
|
||
public void setDescription(String description) { | ||
this.description = description; | ||
} | ||
|
||
public String getHexCode() { | ||
return hexCode; | ||
} | ||
|
||
public void setHexCode(String hexCode) { | ||
this.hexCode = hexCode; | ||
} | ||
} |