add AnswerVariant
This commit is contained in:
parent
8a80013c94
commit
ae43e8c74c
10 changed files with 139 additions and 5 deletions
|
|
@ -1,20 +0,0 @@
|
|||
namespace SurveyBackend.DTOs.Question;
|
||||
|
||||
/// <summary>
|
||||
/// Выходная схема вариантов ответа
|
||||
/// </summary>
|
||||
public class OutputAnswerVariantDto
|
||||
{
|
||||
/// <summary>
|
||||
/// ID варианта ответа
|
||||
/// </summary>
|
||||
public required int Id { get; set; }
|
||||
/// <summary>
|
||||
/// ID родительского вопроса
|
||||
/// </summary>
|
||||
public required int QuestionId { get; set; }
|
||||
/// <summary>
|
||||
/// Текст варианта ответа
|
||||
/// </summary>
|
||||
public required string Text { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue