summaryrefslogtreecommitdiff
path: root/java/src/org/singinst/uf/model/UiText.java
blob: ca3e84c3622483f0742793ef0c9b3358bd533f9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.singinst.uf.model;

public class UiText {

	private final String question;
	private final String help;

	public UiText(String question, String help) {
		this.question = question;
		this.help = help;
	}

	public String getHelp() {
		return help;
	}

	public String getQuestion() {
		return question;
	}
}