Skip to content

Commit

Permalink
[BE/#50] Feat : 레이블 관련 요청 DTO 추가
Browse files Browse the repository at this point in the history
- LabelRequestDto
- create, update 요청 시 사용
  • Loading branch information
MuseopKim committed Jun 18, 2020
1 parent 8ca2241 commit 6474677
Showing 1 changed file with 34 additions and 0 deletions.
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;
}
}

0 comments on commit 6474677

Please sign in to comment.