meerkat-java/voting-booth-gui/src/main/resources/configuration/VotingBoothConfiguration.json

34 lines
858 B
JSON
Raw Normal View History

{
"questions": [
{
"randomize": true,
"question": {
"type": 0,
"questionValue": "Select candidate name."
},
"answers": {
"type": 0,
"answersValue": [
"George Boosh",
"Antonio Banderass",
"Michael Jakson"
]
}
},
{
"randomize": true,
"question": {
"type": 0,
"questionValue": "Select candidate picture."
},
"answers": {
"type": 2,
"answersValue": [
"/F:/vova/meerkat/meerkat-java/voting-booth-gui/src/main/resources/images/GeorgeBush.png",
"/F:/vova/meerkat/meerkat-java/voting-booth-gui/src/main/resources/images/MichaelJackson.png",
"/F:/vova/meerkat/meerkat-java/voting-booth-gui/src/main/resources/images/AntonioBanderass.png"
]
}
}
]
}