You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package cokr.xit.interfaces.postplus.post;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
import lombok.Getter;
|
|
import lombok.Setter;
|
|
|
|
@Getter
|
|
@Setter
|
|
public class PostResponse {
|
|
@JsonProperty("결과")
|
|
private String result;
|
|
@JsonProperty("비고")
|
|
private String remark;
|
|
} |