source:
MotivateDuringTherapy/src/main/java/tudelft/mentalhealth/motivatepersisting/TextOption.java
Last change on this file was 1, checked in by , 6 years ago | |
---|---|
File size: 245 bytes |
Rev | Line | |
---|---|---|
[1] | 1 | package tudelft.mentalhealth.motivatepersisting; |
2 | ||
3 | public class TextOption { | |
4 | private final String text; | |
5 | private final String frequency; | |
6 | ||
7 | public TextOption(String text, String frequency) { | |
8 | this.text = text; | |
9 | this.frequency = frequency; | |
10 | } | |
11 | } |
Note:
See TracBrowser
for help on using the repository browser.