1 package org.wcb.model.bd;
2
3 /**
4 * The constants for the quiz wether a answer is correct or incorrect
5 */
6
7 public class TestbankConstants {
8
9 /**
10 * Value for correct answers
11 */
12 public static final int CORRECT = 1;
13
14 /**
15 * Value for wrong answers
16 */
17 public static final int WRONG = 0;
18 }