Table of Contents

Class QuizQuestionDto

Namespace
Builvero.Application.Interfaces.Services
Assembly
Builvero.Application.dll

Data transfer object representing a quiz question with its prompt and answer options.

public class QuizQuestionDto
Inheritance
QuizQuestionDto
Inherited Members

Properties

Id

Gets or sets the unique identifier of the question.

public string Id { get; set; }

Property Value

string
Data transfer object representing a quiz question with its prompt and answer options.

Options

Gets or sets the dictionary of answer options, where keys are option identifiers and values are option text.

public Dictionary<string, string> Options { get; set; }

Property Value

Dictionary<string, string>
Data transfer object representing a quiz question with its prompt and answer options.

Prompt

Gets or sets the question prompt/text.

public string Prompt { get; set; }

Property Value

string
Data transfer object representing a quiz question with its prompt and answer options.