package service;

public class Question {
	private String question;
	private String réponse;
	
	
	
	public Question(String question, String réponse) {
		super();
		this.question = question;
		this.réponse = réponse;
	}
	public String getQuestion() {
		return question;
	}
	public String getRéponse() {
		return réponse;
	}
	
	
}
