namespace DramaLing.Api.Models.DTOs.SpacedRepetition;
///
/// 題目數據響應
///
public class QuestionData
{
///
/// 題型類型
///
public string QuestionType { get; set; } = string.Empty;
///
/// 選擇題選項 (用於vocab-choice, sentence-listening)
///
public string[]? Options { get; set; }
///
/// 正確答案
///
public string CorrectAnswer { get; set; } = string.Empty;
///
/// 音頻URL (用於聽力題)
///
public string? AudioUrl { get; set; }
///
/// 完整例句 (用於sentence-listening)
///
public string? Sentence { get; set; }
///
/// 挖空例句 (用於sentence-fill)
///
public string? BlankedSentence { get; set; }
///
/// 打亂的單字 (用於sentence-reorder)
///
public string[]? ScrambledWords { get; set; }
}