Merge pull request #91 from nitta-lab-2022/RoomsRest
Turnクラス、形だけ。
commit 854d540ce4ba4d6cfd70379c06cbcb965e163096
2 parents 1404e83 + acd2548
okazaki takehiro authored on 14 Jun 2022
Showing 1 changed file
View
38
src/main/java/com/ntlab/irisserver/entities/Turn.java 0 → 100644
package com.ntlab.irisserver.entities;
 
import com.fasterxml.jackson.annotation.JsonProperty;
 
public class Turn {
 
@JsonProperty("hint")
private String hint;
 
@JsonProperty("team")
private String team;
 
@JsonProperty("max")
private Integer max;
 
//コンストラクタ
 
//---------------------------------------------------------
//セッター
 
public void setHint(String hint) {this.hint = hint;}
 
public void setTeam(String team) {this.team = team;}
 
public void setMax(Integer max) {this.max = max;}
 
//---------------------------------------------------------
//ゲッター
 
public String getHint() {return this.hint;}
 
public String getTeam() {return this.team;}
 
public Integer getMax() {return this.max;}
 
 
}