100-days-of-code/projects/Day 17/quiz-game-start/question_model.py

4 lines
108 B
Python

class Question:
def __init__(self, text, answer):
self.text = text
self.answer = answer